pub enum ClaimKind {
Asserted,
Derived,
Observed,
Revoked,
}Expand description
How a Claim was established.
Variants§
Asserted
Stated directly by a caller.
Derived
Inferred from other claims.
Observed
Recorded from observation.
Revoked
Withdrawn; hidden from queries unless revoked claims are requested.
Implementations§
Trait Implementations§
impl Copy for ClaimKind
impl Eq for ClaimKind
Source§impl Ord for ClaimKind
impl Ord for ClaimKind
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialOrd for ClaimKind
impl PartialOrd for ClaimKind
impl StructuralPartialEq for ClaimKind
Auto Trait Implementations§
impl Freeze for ClaimKind
impl RefUnwindSafe for ClaimKind
impl Send for ClaimKind
impl Sync for ClaimKind
impl Unpin for ClaimKind
impl UnsafeUnpin for ClaimKind
impl UnwindSafe for ClaimKind
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