pub trait CborOutput {
    type Output;

    fn output(bytes: &[u8]) -> Self::Output;
}
Expand description

Marker trait to distinguish a builder that emits an owned value from one that appends to a vector

Required Associated Types

Required Methods

Implementors