Trait Joiner
parity_scale_codec
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.
fn and<V: Codec + Sized>(self, value: &V) -> Self
Append encoding of value to Self.
Self
impl<T> Joiner for T where T: for<'a> Extend<&'a u8>,