pub struct ReadAllLayers<ReadChannels> {
pub read_channels: ReadChannels,
}
Expand description
Specify to read all channels, aborting if any one is invalid.
[ReadRgbaChannels
] or [ReadAnyChannels<ReadFlatSamples>
].
Fields
read_channels: ReadChannels
The channel reading specification
Trait Implementations
sourceimpl<ReadChannels: Clone> Clone for ReadAllLayers<ReadChannels>
impl<ReadChannels: Clone> Clone for ReadAllLayers<ReadChannels>
sourcefn clone(&self) -> ReadAllLayers<ReadChannels>
fn clone(&self) -> ReadAllLayers<ReadChannels>
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<ReadChannels: Debug> Debug for ReadAllLayers<ReadChannels>
impl<ReadChannels: Debug> Debug for ReadAllLayers<ReadChannels>
sourceimpl<ReadChannels: PartialEq> PartialEq<ReadAllLayers<ReadChannels>> for ReadAllLayers<ReadChannels>
impl<ReadChannels: PartialEq> PartialEq<ReadAllLayers<ReadChannels>> for ReadAllLayers<ReadChannels>
sourcefn eq(&self, other: &ReadAllLayers<ReadChannels>) -> bool
fn eq(&self, other: &ReadAllLayers<ReadChannels>) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &ReadAllLayers<ReadChannels>) -> bool
fn ne(&self, other: &ReadAllLayers<ReadChannels>) -> bool
This method tests for !=
.
sourceimpl<'s, C> ReadLayers<'s> for ReadAllLayers<C> where
C: ReadChannels<'s>,
impl<'s, C> ReadLayers<'s> for ReadAllLayers<C> where
C: ReadChannels<'s>,
type Layers = SmallVec<[Layer<<<C as ReadChannels<'s>>::Reader as ChannelsReader>::Channels>; 2]>
type Layers = SmallVec<[Layer<<<C as ReadChannels<'s>>::Reader as ChannelsReader>::Channels>; 2]>
The type of the resulting Layers
type Reader = AllLayersReader<<C as ReadChannels<'s>>::Reader>
type Reader = AllLayersReader<<C as ReadChannels<'s>>::Reader>
The type of the temporary layer reader
impl<ReadChannels: Eq> Eq for ReadAllLayers<ReadChannels>
impl<ReadChannels> StructuralEq for ReadAllLayers<ReadChannels>
impl<ReadChannels> StructuralPartialEq for ReadAllLayers<ReadChannels>
Auto Trait Implementations
impl<ReadChannels> RefUnwindSafe for ReadAllLayers<ReadChannels> where
ReadChannels: RefUnwindSafe,
impl<ReadChannels> Send for ReadAllLayers<ReadChannels> where
ReadChannels: Send,
impl<ReadChannels> Sync for ReadAllLayers<ReadChannels> where
ReadChannels: Sync,
impl<ReadChannels> Unpin for ReadAllLayers<ReadChannels> where
ReadChannels: Unpin,
impl<ReadChannels> UnwindSafe for ReadAllLayers<ReadChannels> where
ReadChannels: UnwindSafe,
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