pub trait FromBytes<L>: Sized {
type Error;
fn from_bytes<B: ByteOrder>(
bytes: &[u8],
channels: usize
) -> Result<Self, Self::Error>;
}
pub trait FromBytes<L>: Sized {
type Error;
fn from_bytes<B: ByteOrder>(
bytes: &[u8],
channels: usize
) -> Result<Self, Self::Error>;
}