[][src]Enum networking::NetworkResponse

pub enum NetworkResponse {
    Peers(Vec<EncapsulatedAddr>),
    Success,
    Blocks(Vec<Block>),
    Headers(Vec<BlockHeader>),
    Transactions(Vec<Transaction>),
}

NetworkResponse provides the possible responses of the 'rest of the network' abstraction to a 'NetworkRequest'

Variants

Peers(Vec<EncapsulatedAddr>)
Success

Success announces that the request completed succesfully but did not need to return any data Used in response to Advertise Requests

Blocks(Vec<Block>)

A list of blocks

Headers(Vec<BlockHeader>)

A list of Headers

Transactions(Vec<Transaction>)

A list of Transactions

Auto Trait Implementations

impl RefUnwindSafe for NetworkResponse

impl Send for NetworkResponse

impl Sync for NetworkResponse

impl Unpin for NetworkResponse

impl UnwindSafe for NetworkResponse

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> From<T> for T[src]

impl<T> Instrument for T[src]

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.