Unmarshall

Trait Unmarshall 

Source
pub trait Unmarshall: Sized {
    // Required method
    fn unmarshall(buf: &[u8]) -> Result<(Self, usize), AmfError>;
}

Required Methods§

Source

fn unmarshall(buf: &[u8]) -> Result<(Self, usize), AmfError>

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§