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

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

The getblocks message

Fields

version: u32

The protocol version

locator_hashes: Vec<BlockHash>

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: BlockHash

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<BlockHash>,
    stop_hash: BlockHash
) -> GetBlocksMessage
[src]

Construct a new getblocks message

Trait Implementations

impl Encodable for GetBlocksMessage[src]

impl Decodable 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 PartialEq<GetBlocksMessage> for GetBlocksMessage[src]

impl Eq for GetBlocksMessage[src]

impl Debug for GetBlocksMessage[src]

Auto Trait Implementations

impl Unpin for GetBlocksMessage

impl Sync for GetBlocksMessage

impl Send for GetBlocksMessage

impl UnwindSafe for GetBlocksMessage

impl RefUnwindSafe for GetBlocksMessage

Blanket Implementations

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

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

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> Into<U> for T where
    U: From<T>, 
[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<T> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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