[][src]Struct overlord::types::SignedProposal

pub struct SignedProposal<T: Codec> {
    pub signature: Bytes,
    pub proposal: Proposal<T>,
}

A signed proposal.

Fields

signature: Bytes

Signature of the proposal.

proposal: Proposal<T>

A proposal.

Trait Implementations

impl<T: Clone + Codec> Clone for SignedProposal<T>[src]

impl<T: Debug + Codec> Debug for SignedProposal<T>[src]

impl<T: Codec> Decodable for SignedProposal<T>[src]

impl<T: Codec> Display for SignedProposal<T> where
    Proposal<T>: Debug
[src]

impl<T: Codec> Encodable for SignedProposal<T>[src]

impl<T: Eq + Codec> Eq for SignedProposal<T>[src]

impl<T: PartialEq + Codec> PartialEq<SignedProposal<T>> for SignedProposal<T>[src]

impl<T: Codec> StructuralEq for SignedProposal<T>[src]

impl<T: Codec> StructuralPartialEq for SignedProposal<T>[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for SignedProposal<T> where
    T: RefUnwindSafe

impl<T> Send for SignedProposal<T>

impl<T> Sync for SignedProposal<T> where
    T: Sync

impl<T> Unpin for SignedProposal<T> where
    T: Unpin

impl<T> UnwindSafe for SignedProposal<T> where
    T: UnwindSafe

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> Cloneable for T where
    T: 'static + Send + Sync + Debug + DynClone
[src]

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

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

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

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.