pub struct ExplicitDeny {
pub policies: Option<Vec<Policy>>,
}Expand description
Information that explicitly denies authorization.
Fields§
§policies: Option<Vec<Policy>>The policies that denied the authorization.
Trait Implementations§
Source§impl Clone for ExplicitDeny
impl Clone for ExplicitDeny
Source§fn clone(&self) -> ExplicitDeny
fn clone(&self) -> ExplicitDeny
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 ExplicitDeny
impl Debug for ExplicitDeny
Source§impl Default for ExplicitDeny
impl Default for ExplicitDeny
Source§fn default() -> ExplicitDeny
fn default() -> ExplicitDeny
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ExplicitDeny
impl<'de> Deserialize<'de> for ExplicitDeny
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 ExplicitDeny
impl PartialEq for ExplicitDeny
impl StructuralPartialEq for ExplicitDeny
Auto Trait Implementations§
impl Freeze for ExplicitDeny
impl RefUnwindSafe for ExplicitDeny
impl Send for ExplicitDeny
impl Sync for ExplicitDeny
impl Unpin for ExplicitDeny
impl UnwindSafe for ExplicitDeny
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