[][src]Struct nanocurrency_protocol::NanoCurrencyCodec

pub struct NanoCurrencyCodec(pub Network);

Implementations

impl NanoCurrencyCodec[src]

pub fn read_block<C: Read>(cursor: &mut C, block_ty: u8) -> Result<Block>[src]

pub fn block_type_num(ty: BlockType) -> u8[src]

pub fn write_block(buf: &mut BytesMut, block: Block)[src]

Does NOT include block type

pub fn network_magic_byte(network: Network) -> u8[src]

Trait Implementations

impl Decoder for NanoCurrencyCodec[src]

type Item = (MessageHeader, Message)

The type of decoded frames.

type Error = Error

The type of unrecoverable frame decoding errors. Read more

impl Encoder<Message> for NanoCurrencyCodec[src]

type Error = Error

The type of encoding errors. Read more

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, 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.