pub trait VariableLengthFromBytes: Sized {
    // Required method
    fn from_bytes(bytes: &[u8]) -> Result<(Self, usize)>;
}

Required Methods§

source

fn from_bytes(bytes: &[u8]) -> Result<(Self, usize)>

Object Safety§

This trait is not object safe.

Implementors§