[][src]Trait parity_scale_codec::Joiner

pub trait Joiner {
    fn and<V: Codec + Sized>(self, value: &V) -> Self;
}

Trait to allow itself to be serialised into a value which can be extended by bytes.

Required methods

fn and<V: Codec + Sized>(self, value: &V) -> Self

Append encoding of value to Self.

Loading content...

Implementors

impl<T> Joiner for T where
    T: for<'a> Extend<&'a u8>, 
[src]

Loading content...