Trait emerald_core::WriteRLP [] [src]

pub trait WriteRLP {
    fn write_rlp(&self, buf: &mut Vec<u8>);
}

The WriteRLP trait is used to specify functionality of serializing data to RLP bytes

Required Methods

Writes itself as RLP bytes into specified buffer

Implementors