Struct finality_grandpa::SignedPrecommit [−][src]
pub struct SignedPrecommit<H, N, S, Id> {
pub precommit: Precommit<H, N>,
pub signature: S,
pub id: Id,
}Expand description
A signed precommit message.
Fields
precommit: Precommit<H, N>The precommit message which has been signed.
signature: SThe signature on the message.
id: IdThe Id of the signer.
Trait Implementations
impl<H: PartialEq, N: PartialEq, S: PartialEq, Id: PartialEq> PartialEq<SignedPrecommit<H, N, S, Id>> for SignedPrecommit<H, N, S, Id>
impl<H: PartialEq, N: PartialEq, S: PartialEq, Id: PartialEq> PartialEq<SignedPrecommit<H, N, S, Id>> for SignedPrecommit<H, N, S, Id>
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
Auto Trait Implementations
impl<H, N, S, Id> RefUnwindSafe for SignedPrecommit<H, N, S, Id> where
H: RefUnwindSafe,
Id: RefUnwindSafe,
N: RefUnwindSafe,
S: RefUnwindSafe,
impl<H, N, S, Id> Unpin for SignedPrecommit<H, N, S, Id> where
H: Unpin,
Id: Unpin,
N: Unpin,
S: Unpin,
impl<H, N, S, Id> UnwindSafe for SignedPrecommit<H, N, S, Id> where
H: UnwindSafe,
Id: UnwindSafe,
N: UnwindSafe,
S: UnwindSafe,
Blanket Implementations
Mutably borrows from an owned value. Read more