pub struct InterleavedAudioBuffer<'a, SampleType> { /* private fields */ }
Expand description

An AudioBuffer that stores samples as interleaved frames, used for [cpal] compatibility.

Example layout:

[ 0, 0, // <- left_sample, right_sample, …, ]

Implementations

Trait Implementations

The type of samples within this buffer.

The number of channels in this buffer

The number of samples in this buffer

Get a slice to the internal data. Will not work with VST adapter Read more

Get a mutable slice to the internal data. Will not work with VST adapter Read more

Get a ref to an INPUT sample in this buffer. Read more

Get a mutable ref to an OUTPUT sample in this buffer Read more

Set an OUTPUT sample in this buffer

Shortcut for .slice().chunks(num_channels)

Shortcut for .slice_mut().chunks_mut(num_channels) Read more

Unsafe, no bounds check - Get a ref to an INPUT sample in this buffer Read more

Unsafe, no bounds check - Get a mutable ref to an OUTPUT sample in this buffer Read more

Unsafe, no bounds check - Set an OUTPUT sample in this buffer Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.