[][src]Struct crev_data::proof::trust::Trust

pub struct Trust {
    pub common: Common,
    pub ids: Vec<PubId>,
    pub trust: TrustLevel,
    pub comment: String,
}

Body of a Trust Proof

Fields

common: Commonids: Vec<PubId>trust: TrustLevelcomment: String

Methods

impl Trust[src]

pub const KIND: &'static str[src]

Trait Implementations

impl Clone for Trust[src]

impl CommonOps for Trust[src]

impl Content for Trust[src]

impl ContentWithDraft for Trust[src]

impl Debug for Trust[src]

impl<'de> Deserialize<'de> for Trust[src]

impl Display for Trust[src]

impl From<Trust> for Draft[src]

impl Serialize for Trust[src]

Auto Trait Implementations

impl RefUnwindSafe for Trust

impl Send for Trust

impl Sync for Trust

impl Unpin for Trust

impl UnwindSafe for Trust

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> ContentDeserialize for T where
    T: DeserializeOwned + Content
[src]

impl<T> ContentExt for T where
    T: Content
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,