Struct finality_grandpa::SignedMessage[][src]

pub struct SignedMessage<H, S, Id> {
    pub message: Message<H>,
    pub signature: S,
    pub id: Id,
}

A signed message.

Fields

Trait Implementations

impl<H: Debug, S: Debug, Id: Debug> Debug for SignedMessage<H, S, Id>
[src]

Formats the value using the given formatter. Read more

impl<H: Clone, S: Clone, Id: Clone> Clone for SignedMessage<H, S, Id>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<H: PartialEq, S: PartialEq, Id: PartialEq> PartialEq for SignedMessage<H, S, Id>
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl<H: Eq, S: Eq, Id: Eq> Eq for SignedMessage<H, S, Id>
[src]

Auto Trait Implementations

impl<H, S, Id> Send for SignedMessage<H, S, Id> where
    H: Send,
    Id: Send,
    S: Send

impl<H, S, Id> Sync for SignedMessage<H, S, Id> where
    H: Sync,
    Id: Sync,
    S: Sync