pub trait Joiner {
// Required method
fn and<V: Codec + Sized>(self, value: &V) -> Self;
}
Expand description
Trait to allow itself to be serialised into a value which can be extended by bytes.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.