Trait tetsy_scale_codec::KeyedVec[][src]

pub trait KeyedVec {
    fn to_keyed_vec(&self, prepend_key: &[u8]) -> Vec<u8>

Notable traits for Vec<u8, Global>

impl Write for Vec<u8, Global>
; }

Trait to allow itself to be serialised and prepended by a given slice.

Required methods

fn to_keyed_vec(&self, prepend_key: &[u8]) -> Vec<u8>

Notable traits for Vec<u8, Global>

impl Write for Vec<u8, Global>
[src]

Return an encoding of Self prepended by given slice.

Loading content...

Implementors

impl<T: Codec> KeyedVec for T[src]

Loading content...