pub struct AllLayersWriter<ChannelsWriter> { /* private fields */ }
Expand description
A temporary writer for an arbitrary list of layers
Trait Implementations
sourceimpl<ChannelsWriter: Clone> Clone for AllLayersWriter<ChannelsWriter>
impl<ChannelsWriter: Clone> Clone for AllLayersWriter<ChannelsWriter>
sourcefn clone(&self) -> AllLayersWriter<ChannelsWriter>
fn clone(&self) -> AllLayersWriter<ChannelsWriter>
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<ChannelsWriter: Debug> Debug for AllLayersWriter<ChannelsWriter>
impl<ChannelsWriter: Debug> Debug for AllLayersWriter<ChannelsWriter>
sourceimpl<C> LayersWriter for AllLayersWriter<C> where
C: ChannelsWriter,
impl<C> LayersWriter for AllLayersWriter<C> where
C: ChannelsWriter,
sourceimpl<ChannelsWriter: PartialEq> PartialEq<AllLayersWriter<ChannelsWriter>> for AllLayersWriter<ChannelsWriter>
impl<ChannelsWriter: PartialEq> PartialEq<AllLayersWriter<ChannelsWriter>> for AllLayersWriter<ChannelsWriter>
sourcefn eq(&self, other: &AllLayersWriter<ChannelsWriter>) -> bool
fn eq(&self, other: &AllLayersWriter<ChannelsWriter>) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &AllLayersWriter<ChannelsWriter>) -> bool
fn ne(&self, other: &AllLayersWriter<ChannelsWriter>) -> bool
This method tests for !=
.
impl<ChannelsWriter: Eq> Eq for AllLayersWriter<ChannelsWriter>
impl<ChannelsWriter> StructuralEq for AllLayersWriter<ChannelsWriter>
impl<ChannelsWriter> StructuralPartialEq for AllLayersWriter<ChannelsWriter>
Auto Trait Implementations
impl<ChannelsWriter> RefUnwindSafe for AllLayersWriter<ChannelsWriter> where
ChannelsWriter: RefUnwindSafe,
impl<ChannelsWriter> Send for AllLayersWriter<ChannelsWriter> where
ChannelsWriter: Send,
impl<ChannelsWriter> Sync for AllLayersWriter<ChannelsWriter> where
ChannelsWriter: Sync,
impl<ChannelsWriter> Unpin for AllLayersWriter<ChannelsWriter> where
ChannelsWriter: Unpin,
impl<ChannelsWriter> UnwindSafe for AllLayersWriter<ChannelsWriter> where
ChannelsWriter: 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