pub struct ImplicitDeny {
pub policies: Option<Vec<Policy>>,
}Expand description
Information that implicitly denies authorization. When policy doesn't explicitly deny or allow an action on a resource it is considered an implicit deny.
Fields§
§policies: Option<Vec<Policy>>Policies that don't contain a matching allow or deny statement for the specified action on the specified resource.
Trait Implementations§
Source§impl Clone for ImplicitDeny
impl Clone for ImplicitDeny
Source§fn clone(&self) -> ImplicitDeny
fn clone(&self) -> ImplicitDeny
Returns a duplicate 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 ImplicitDeny
impl Debug for ImplicitDeny
Source§impl Default for ImplicitDeny
impl Default for ImplicitDeny
Source§fn default() -> ImplicitDeny
fn default() -> ImplicitDeny
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ImplicitDeny
impl<'de> Deserialize<'de> for ImplicitDeny
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 PartialEq for ImplicitDeny
impl PartialEq for ImplicitDeny
impl StructuralPartialEq for ImplicitDeny
Auto Trait Implementations§
impl Freeze for ImplicitDeny
impl RefUnwindSafe for ImplicitDeny
impl Send for ImplicitDeny
impl Sync for ImplicitDeny
impl Unpin for ImplicitDeny
impl UnwindSafe for ImplicitDeny
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