[][src]Struct dsf::DataChunk

pub struct DataChunk { /* fields omitted */ }

The data chunk contains the DSD sample data.

Methods

impl DataChunk[src]

pub fn chunk_size(&self) -> u64[src]

The size of the data chunk in bytes. This is equal to the sample data + 12 bytes. The extra 12 bytes are taken up by the data chunk header and this size field.

Trait Implementations

impl Display for DataChunk[src]

impl TryFrom<[u8; 12]> for DataChunk[src]

type Error = Error

The type returned in the event of a conversion error.

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.