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

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

Required Associated Types

Required Methods

Implementors