pub struct AnyChannelsWriter<SamplesWriter> { /* private fields */ }
Expand description
A temporary writer for an arbitrary list of channels
Trait Implementations
sourceimpl<Samples> ChannelsWriter for AnyChannelsWriter<Samples> where
Samples: SamplesWriter,
impl<Samples> ChannelsWriter for AnyChannelsWriter<Samples> where
Samples: SamplesWriter,
sourceimpl<SamplesWriter: Clone> Clone for AnyChannelsWriter<SamplesWriter>
impl<SamplesWriter: Clone> Clone for AnyChannelsWriter<SamplesWriter>
sourcefn clone(&self) -> AnyChannelsWriter<SamplesWriter>
fn clone(&self) -> AnyChannelsWriter<SamplesWriter>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl<SamplesWriter: Debug> Debug for AnyChannelsWriter<SamplesWriter>
impl<SamplesWriter: Debug> Debug for AnyChannelsWriter<SamplesWriter>
sourceimpl<SamplesWriter: PartialEq> PartialEq<AnyChannelsWriter<SamplesWriter>> for AnyChannelsWriter<SamplesWriter>
impl<SamplesWriter: PartialEq> PartialEq<AnyChannelsWriter<SamplesWriter>> for AnyChannelsWriter<SamplesWriter>
sourcefn eq(&self, other: &AnyChannelsWriter<SamplesWriter>) -> bool
fn eq(&self, other: &AnyChannelsWriter<SamplesWriter>) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &AnyChannelsWriter<SamplesWriter>) -> bool
fn ne(&self, other: &AnyChannelsWriter<SamplesWriter>) -> bool
This method tests for !=
.
impl<SamplesWriter: Eq> Eq for AnyChannelsWriter<SamplesWriter>
impl<SamplesWriter> StructuralEq for AnyChannelsWriter<SamplesWriter>
impl<SamplesWriter> StructuralPartialEq for AnyChannelsWriter<SamplesWriter>
Auto Trait Implementations
impl<SamplesWriter> RefUnwindSafe for AnyChannelsWriter<SamplesWriter> where
SamplesWriter: RefUnwindSafe,
impl<SamplesWriter> Send for AnyChannelsWriter<SamplesWriter> where
SamplesWriter: Send,
impl<SamplesWriter> Sync for AnyChannelsWriter<SamplesWriter> where
SamplesWriter: Sync,
impl<SamplesWriter> Unpin for AnyChannelsWriter<SamplesWriter> where
SamplesWriter: Unpin,
impl<SamplesWriter> UnwindSafe for AnyChannelsWriter<SamplesWriter> where
SamplesWriter: UnwindSafe + RefUnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more