#[repr(u8)]pub enum AuthDecisionAnnotation {
AllAuthorized = 0,
SomeDenied = 1,
}Expand description
One-byte annotation summarizing whether every Op in the record’s stage authorized cleanly. Belt-and-suspenders companion to the chain hash (belt-and-suspenders companion).
Variants§
Trait Implementations§
Source§impl Clone for AuthDecisionAnnotation
impl Clone for AuthDecisionAnnotation
Source§fn clone(&self) -> AuthDecisionAnnotation
fn clone(&self) -> AuthDecisionAnnotation
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 AuthDecisionAnnotation
impl Debug for AuthDecisionAnnotation
Source§impl<'de> Deserialize<'de> for AuthDecisionAnnotation
impl<'de> Deserialize<'de> for AuthDecisionAnnotation
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 AuthDecisionAnnotation
impl PartialEq for AuthDecisionAnnotation
Source§impl Serialize for AuthDecisionAnnotation
impl Serialize for AuthDecisionAnnotation
impl Copy for AuthDecisionAnnotation
impl Eq for AuthDecisionAnnotation
impl StructuralPartialEq for AuthDecisionAnnotation
Auto Trait Implementations§
impl Freeze for AuthDecisionAnnotation
impl RefUnwindSafe for AuthDecisionAnnotation
impl Send for AuthDecisionAnnotation
impl Sync for AuthDecisionAnnotation
impl Unpin for AuthDecisionAnnotation
impl UnsafeUnpin for AuthDecisionAnnotation
impl UnwindSafe for AuthDecisionAnnotation
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