[][src]Struct cpal::Data

pub struct Data { /* fields omitted */ }

A buffer of dynamically typed audio data, passed to raw stream callbacks.

Raw input stream callbacks receive &Data, while raw output stream callbacks expect &mut Data.

Implementations

impl Data[src]

pub fn sample_format(&self) -> SampleFormat[src]

The sample format of the internal audio data.

pub fn len(&self) -> usize[src]

The full length of the buffer in samples.

The returned length is the same length as the slice of type T that would be returned via as_slice given a sample type that matches the inner sample format.

pub fn bytes(&self) -> &[u8][src]

The raw slice of memory representing the underlying audio data as a slice of bytes.

It is up to the user to interpret the slice of memory based on Data::sample_format.

pub fn bytes_mut(&mut self) -> &mut [u8][src]

The raw slice of memory representing the underlying audio data as a slice of bytes.

It is up to the user to interpret the slice of memory based on Data::sample_format.

pub fn as_slice<T>(&self) -> Option<&[T]> where
    T: Sample
[src]

Access the data as a slice of sample type T.

Returns None if the sample type does not match the expected sample format.

pub fn as_slice_mut<T>(&mut self) -> Option<&mut [T]> where
    T: Sample
[src]

Access the data as a slice of sample type T.

Returns None if the sample type does not match the expected sample format.

Trait Implementations

impl Debug for Data[src]

Auto Trait Implementations

impl RefUnwindSafe for Data

impl !Send for Data

impl !Sync for Data

impl Unpin for Data

impl UnwindSafe for Data

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, 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.