Trait cbor_data::CborOutput

source ·
pub trait CborOutput {
    type Output;

    // Required method
    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§

source

fn output(bytes: &[u8]) -> Self::Output

Object Safety§

This trait is not object safe.

Implementors§