pub trait FromBytes<L>: Sized {
    type Error;

    fn from_bytes<B: ByteOrder>(
        bytes: &[u8],
        channels: usize
    ) -> Result<Self, Self::Error>; }

Required Associated Types

Required Methods

Implementors