pub trait Joiner {
    // Required method
    fn and<V>(self, value: &V) -> Self
       where V: Codec;
}
Expand description

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

Required Methods§

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

Append encoding of value to Self.

Object Safety§

This trait is not object safe.

Implementors§

§

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