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§
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.