Struct tetsy_rlp::PayloadInfo[][src]

pub struct PayloadInfo {
    pub header_len: usize,
    pub value_len: usize,
}

Stores basic information about item

Fields

header_len: usize

Header length in bytes

value_len: usize

Value length in bytes

Implementations

impl PayloadInfo[src]

pub fn total(&self) -> usize[src]

Total size of the RLP.

pub fn from(header_bytes: &[u8]) -> Result<PayloadInfo, DecoderError>[src]

Create a new object from the given bytes RLP. The bytes

Trait Implementations

impl Debug for PayloadInfo[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, 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.