Enum bonsaidb_core::permissions::bonsai::BonsaiAction
source · pub enum BonsaiAction {
Server(ServerAction),
Database(DatabaseAction),
}
Expand description
Actions that can be permitted within BonsaiDb.
Variants§
Server(ServerAction)
Actions that operate on a server
Database(DatabaseAction)
Actions that operate on a specific database.
Trait Implementations§
source§impl Action for BonsaiAction
impl Action for BonsaiAction
source§fn name(&self) -> ActionName
fn name(&self) -> ActionName
The full name of this action.
source§impl Clone for BonsaiAction
impl Clone for BonsaiAction
source§fn clone(&self) -> BonsaiAction
fn clone(&self) -> BonsaiAction
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for BonsaiAction
impl Debug for BonsaiAction
source§impl<'de> Deserialize<'de> for BonsaiAction
impl<'de> Deserialize<'de> for BonsaiAction
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl Serialize for BonsaiAction
impl Serialize for BonsaiAction
impl Copy for BonsaiAction
Auto Trait Implementations§
impl RefUnwindSafe for BonsaiAction
impl Send for BonsaiAction
impl Sync for BonsaiAction
impl Unpin for BonsaiAction
impl UnwindSafe for BonsaiAction
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more