[][src]Struct bitcoin::network::message_blockdata::GetBlocksMessage

pub struct GetBlocksMessage {
    pub version: u32,
    pub locator_hashes: Vec<Hash>,
    pub stop_hash: Hash,
}

The getblocks message

Fields

version: u32

The protocol version

locator_hashes: Vec<Hash>

Locator hashes --- ordered newest to oldest. The remote peer will reply with its longest known chain, starting from a locator hash if possible and block 1 otherwise.

stop_hash: Hash

References the block to stop at, or zero to just fetch the maximum 500 blocks

Methods

impl GetBlocksMessage[src]

pub fn new(locator_hashes: Vec<Hash>, stop_hash: Hash) -> GetBlocksMessage[src]

Construct a new getblocks message

Trait Implementations

impl<S: Encoder> Encodable<S> for GetBlocksMessage[src]

impl<D: Decoder> Decodable<D> for GetBlocksMessage[src]

impl PartialEq<GetBlocksMessage> for GetBlocksMessage[src]

impl Clone for GetBlocksMessage[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Eq for GetBlocksMessage[src]

impl Debug for GetBlocksMessage[src]

Auto Trait Implementations

Blanket Implementations

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

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

type Owned = T

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

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

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

The type returned in the event of a conversion error.