Skip to main content

DecodeSymbolic

Trait DecodeSymbolic 

Source
pub trait DecodeSymbolic {
    // Required method
    fn decode_symbolic(&self) -> Result<Vec<Element>, DecodeError>;
}
Expand description

Symbolic CBOR decoding.

Required Methods§

Source

fn decode_symbolic(&self) -> Result<Vec<Element>, DecodeError>

Decode data to a low-level format::Element list.

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementations on Foreign Types§

Source§

impl DecodeSymbolic for [u8]

Implementors§