pub struct TrustEntry {
pub public_key: String,
pub display_name_seen: String,
pub first_seen: String,
pub last_seen: String,
pub last_seen_surface: String,
pub trust_level: TrustLevel,
pub fingerprint: String,
pub word_list: String,
pub rotated_from: Option<String>,
pub superseded_at: Option<String>,
pub last_rotation_at: Option<String>,
}Fields§
§public_key: String§display_name_seen: String§first_seen: String§last_seen: String§last_seen_surface: String§trust_level: TrustLevel§fingerprint: String§word_list: String§rotated_from: Option<String>§superseded_at: Option<String>§last_rotation_at: Option<String>Trait Implementations§
Source§impl Clone for TrustEntry
impl Clone for TrustEntry
Source§fn clone(&self) -> TrustEntry
fn clone(&self) -> TrustEntry
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 TrustEntry
impl Debug for TrustEntry
Source§impl<'de> Deserialize<'de> for TrustEntry
impl<'de> Deserialize<'de> for TrustEntry
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
Auto Trait Implementations§
impl Freeze for TrustEntry
impl RefUnwindSafe for TrustEntry
impl Send for TrustEntry
impl Sync for TrustEntry
impl Unpin for TrustEntry
impl UnsafeUnpin for TrustEntry
impl UnwindSafe for TrustEntry
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