Struct symphonia_core::audio::AudioPlanesMut[][src]

pub struct AudioPlanesMut<'a, S: 'a + Sample> { /* fields omitted */ }

AudioPlanesMut provides mutable slices to each audio channel (plane) contained in a signal.

Implementations

impl<'a, S: Sample> AudioPlanesMut<'a, S>[src]

pub fn planes(&mut self) -> &mut [&'a mut [S]][src]

Gets all the audio planes.

Auto Trait Implementations

impl<'a, S> RefUnwindSafe for AudioPlanesMut<'a, S> where
    S: RefUnwindSafe

impl<'a, S> Send for AudioPlanesMut<'a, S> where
    S: Send

impl<'a, S> Sync for AudioPlanesMut<'a, S> where
    S: Sync

impl<'a, S> Unpin for AudioPlanesMut<'a, S>

impl<'a, S> !UnwindSafe for AudioPlanesMut<'a, S>

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<F, T> IntoSample<T> for F where
    T: FromSample<F>, 
[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.