pub struct AuthenticityEvidence {
pub verified: bool,
pub mechanism: Option<String>,
}Expand description
Cryptographic verification state for a source revision.
Fields§
§verified: bool§mechanism: Option<String>Implementations§
Trait Implementations§
Source§impl Clone for AuthenticityEvidence
impl Clone for AuthenticityEvidence
Source§fn clone(&self) -> AuthenticityEvidence
fn clone(&self) -> AuthenticityEvidence
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 AuthenticityEvidence
impl Debug for AuthenticityEvidence
Source§impl<'de> Deserialize<'de> for AuthenticityEvidence
impl<'de> Deserialize<'de> for AuthenticityEvidence
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 AuthenticityEvidence
impl PartialEq for AuthenticityEvidence
Source§impl Serialize for AuthenticityEvidence
impl Serialize for AuthenticityEvidence
impl Eq for AuthenticityEvidence
impl StructuralPartialEq for AuthenticityEvidence
Auto Trait Implementations§
impl Freeze for AuthenticityEvidence
impl RefUnwindSafe for AuthenticityEvidence
impl Send for AuthenticityEvidence
impl Sync for AuthenticityEvidence
impl Unpin for AuthenticityEvidence
impl UnsafeUnpin for AuthenticityEvidence
impl UnwindSafe for AuthenticityEvidence
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