Struct bonsaidb_core::permissions::Statement
source · [−]pub struct Statement {
pub resources: Vec<ResourceName<'static>, Global>,
pub actions: Option<ActionNameList>,
pub configuration: Option<HashMap<String, Configuration, RandomState>>,
}Expand description
A statement of permissions. A statement describes whether one or more
actions should be allowed to be taken against resources.
Fields
resources: Vec<ResourceName<'static>, Global>The list of resources this statement applies to.
actions: Option<ActionNameList>The list of actions this statement applies to.
configuration: Option<HashMap<String, Configuration, RandomState>>Any configured values for these resources.
Implementations
Returns a statement that allows ActionNameList::All against
ResourceName::any().
Returns an empty statement for a resource named name.
Returns an empty statement for ResourceName::any().
pub fn for_resources<II>(names: II) -> Statement where
II: IntoIterator<Item = ResourceName<'static>>,
pub fn for_resources<II>(names: II) -> Statement where
II: IntoIterator<Item = ResourceName<'static>>,
Returns an empty statement for a resources named names.
Allows action and returns self.
Allows ActionNameList::All.
Allows ActionNameList::All and returns self.
Sets configuration for key for the resources in this statement.
Trait Implementations
pub fn deserialize<__D>(
__deserializer: __D
) -> Result<Statement, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
pub fn deserialize<__D>(
__deserializer: __D
) -> Result<Statement, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Performs the conversion.
pub fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer,
pub fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations
impl RefUnwindSafe for Statement
impl UnwindSafe for Statement
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more