[][src]Trait elrond_codec::NestedEncodeNoErr

pub trait NestedEncodeNoErr: Sized {
    pub fn dep_encode_no_err<O: NestedEncodeOutput>(&self, dest: &mut O);
}

Most types will be encoded without any possibility of error. The trait is used to provide these implementations. This is currently not a substitute for implementing a proper TopEncode.

Required methods

pub fn dep_encode_no_err<O: NestedEncodeOutput>(&self, dest: &mut O)[src]

Loading content...

Implementors

impl NestedEncodeNoErr for ()[src]

impl NestedEncodeNoErr for bool[src]

impl NestedEncodeNoErr for i8[src]

impl NestedEncodeNoErr for i16[src]

impl NestedEncodeNoErr for i32[src]

impl NestedEncodeNoErr for i64[src]

impl NestedEncodeNoErr for isize[src]

impl NestedEncodeNoErr for u8[src]

impl NestedEncodeNoErr for u16[src]

impl NestedEncodeNoErr for u32[src]

impl NestedEncodeNoErr for u64[src]

impl NestedEncodeNoErr for usize[src]

Loading content...