pub struct GuardEvidence {
pub kind: GuardKind,
pub expression: String,
pub span: AstSpan,
pub order: usize,
pub references_owner: bool,
pub references_signer: bool,
pub references_key: bool,
}Fields§
§kind: GuardKind§expression: String§span: AstSpan§order: usize§references_owner: bool§references_signer: bool§references_key: boolTrait Implementations§
Source§impl Clone for GuardEvidence
impl Clone for GuardEvidence
Source§fn clone(&self) -> GuardEvidence
fn clone(&self) -> GuardEvidence
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 GuardEvidence
impl Debug for GuardEvidence
impl Eq for GuardEvidence
Source§impl PartialEq for GuardEvidence
impl PartialEq for GuardEvidence
Source§fn eq(&self, other: &GuardEvidence) -> bool
fn eq(&self, other: &GuardEvidence) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for GuardEvidence
impl Serialize for GuardEvidence
impl StructuralPartialEq for GuardEvidence
Auto Trait Implementations§
impl Freeze for GuardEvidence
impl RefUnwindSafe for GuardEvidence
impl Send for GuardEvidence
impl Sync for GuardEvidence
impl Unpin for GuardEvidence
impl UnsafeUnpin for GuardEvidence
impl UnwindSafe for GuardEvidence
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