[][src]Struct snarkos_network::message::types::memorypool::MemoryPool

pub struct MemoryPool {
    pub transactions: Vec<Vec<u8>>,
}

A response to a GetMemoryPool request.

Fields

transactions: Vec<Vec<u8>>

Vector of memory pool transactions

Implementations

impl MemoryPool[src]

pub fn new(transactions: Vec<Vec<u8>>) -> Self[src]

Trait Implementations

impl Clone for MemoryPool[src]

impl Debug for MemoryPool[src]

impl Message for MemoryPool[src]

impl PartialEq<MemoryPool> for MemoryPool[src]

impl StructuralPartialEq for MemoryPool[src]

Auto Trait Implementations

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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

type Owned = T

The resulting type after obtaining ownership.

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<V, T> VZip<V> for T where
    V: MultiLane<T>,