Decode

Trait Decode 

Source
pub trait Decode {
    // Required method
    fn decode<T: AsRef<[u8]>>(buffer: T) -> Option<Vec<File>>;
}

Required Methods§

Source

fn decode<T: AsRef<[u8]>>(buffer: T) -> Option<Vec<File>>

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.

Implementors§