pub struct NoneMore;
Expand description
No more recursion. Can be used within any Recursive<NoneMore, YourValue>
type.
Trait Implementations
sourceimpl CheckDuplicates for NoneMore
impl CheckDuplicates for NoneMore
sourcefn already_contains(&self, _: &Text) -> bool
fn already_contains(&self, _: &Text) -> bool
Check for duplicate channel names.
sourceimpl IntoNonRecursive for NoneMore
impl IntoNonRecursive for NoneMore
type NonRecursive = ()
type NonRecursive = ()
The resulting tuple type.
sourcefn into_non_recursive(self) -> Self::NonRecursive
fn into_non_recursive(self) -> Self::NonRecursive
Convert this recursive type to a nice tuple.
sourceimpl IntoRecursive for NoneMore
impl IntoRecursive for NoneMore
sourcefn into_recursive(self) -> Self::Recursive
fn into_recursive(self) -> Self::Recursive
Create a recursive type from this tuple.
sourceimpl LayersWriter for NoneMore
impl LayersWriter for NoneMore
sourceimpl ReadSpecificChannel for NoneMore
impl ReadSpecificChannel for NoneMore
type RecursivePixelReader = NoneMore
type RecursivePixelReader = NoneMore
A separate internal reader for the pixels. Will be of type Recursive<_, SampleReader<_>>
,
depending on the pixels of the specific channel combination. Read more
sourcefn create_recursive_reader(
&self,
_: &ChannelList
) -> Result<Self::RecursivePixelReader>
fn create_recursive_reader(
&self,
_: &ChannelList
) -> Result<Self::RecursivePixelReader>
Create a separate internal reader for the pixels of the specific channel combination.
sourcefn required<Sample>(
self,
channel_name: impl Into<Text>
) -> ReadRequiredChannel<Self, Sample>
fn required<Sample>(
self,
channel_name: impl Into<Text>
) -> ReadRequiredChannel<Self, Sample>
Plan to read an additional channel from the image, with the specified name.
If the channel cannot be found in the image when the image is read, the image will not be loaded.
The generic parameter can usually be inferred from the closure in collect_pixels
. Read more
sourcefn optional<Sample>(
self,
channel_name: impl Into<Text>,
default_sample: Sample
) -> ReadOptionalChannel<Self, Sample>
fn optional<Sample>(
self,
channel_name: impl Into<Text>,
default_sample: Sample
) -> ReadOptionalChannel<Self, Sample>
Plan to read an additional channel from the image, with the specified name.
If the file does not contain this channel, the specified default sample will be returned instead.
You can check whether the channel has been loaded by
checking the presence of the optional channel description before instantiating your own image.
The generic parameter can usually be inferred from the closure in collect_pixels
. Read more
sourcefn collect_pixels<Pixel, PixelStorage, CreatePixels, SetPixel>(
self,
create_pixels: CreatePixels,
set_pixel: SetPixel
) -> CollectPixels<Self, Pixel, PixelStorage, CreatePixels, SetPixel> where
<Self::RecursivePixelReader as RecursivePixelReader>::RecursivePixel: IntoTuple<Pixel>,
<Self::RecursivePixelReader as RecursivePixelReader>::RecursiveChannelDescriptions: IntoNonRecursive,
CreatePixels: Fn(Vec2<usize>, &<<Self::RecursivePixelReader as RecursivePixelReader>::RecursiveChannelDescriptions as IntoNonRecursive>::NonRecursive) -> PixelStorage,
SetPixel: Fn(&mut PixelStorage, Vec2<usize>, Pixel),
fn collect_pixels<Pixel, PixelStorage, CreatePixels, SetPixel>(
self,
create_pixels: CreatePixels,
set_pixel: SetPixel
) -> CollectPixels<Self, Pixel, PixelStorage, CreatePixels, SetPixel> where
<Self::RecursivePixelReader as RecursivePixelReader>::RecursivePixel: IntoTuple<Pixel>,
<Self::RecursivePixelReader as RecursivePixelReader>::RecursiveChannelDescriptions: IntoNonRecursive,
CreatePixels: Fn(Vec2<usize>, &<<Self::RecursivePixelReader as RecursivePixelReader>::RecursiveChannelDescriptions as IntoNonRecursive>::NonRecursive) -> PixelStorage,
SetPixel: Fn(&mut PixelStorage, Vec2<usize>, Pixel),
Using two closures, define how to store the pixels.
The first closure creates an image, and the second closure inserts a single pixel.
The type of the pixel can be defined by the second closure;
it must be a tuple containing f16
, f32
, u32
or Sample
values.
See the examples for more information. Read more
sourceimpl RecursivePixelReader for NoneMore
impl RecursivePixelReader for NoneMore
type RecursiveChannelDescriptions = NoneMore
type RecursiveChannelDescriptions = NoneMore
The channel descriptions from the image.
Will be converted to a tuple before being stored in SpecificChannels<_, ChannelDescriptions>
. Read more
sourcefn get_descriptions(&self) -> Self::RecursiveChannelDescriptions
fn get_descriptions(&self) -> Self::RecursiveChannelDescriptions
Returns the channel descriptions based on the channels in the file.
type RecursivePixel = NoneMore
type RecursivePixel = NoneMore
The pixel type. Will be converted to a tuple at the end of the process.
sourcefn read_pixels<'s, FullPixel>(
&self,
_: &'s [u8],
_: &mut [FullPixel],
_: impl Fn(&mut FullPixel) -> &mut NoneMore
)
fn read_pixels<'s, FullPixel>(
&self,
_: &'s [u8],
_: &mut [FullPixel],
_: impl Fn(&mut FullPixel) -> &mut NoneMore
)
Read the line of pixels.
sourceimpl RecursivePixelWriter<NoneMore> for NoneMore
impl RecursivePixelWriter<NoneMore> for NoneMore
sourcefn write_pixels<FullPixel>(
&self,
_: &mut [u8],
_: &[FullPixel],
_: impl Fn(&FullPixel) -> &NoneMore
)
fn write_pixels<FullPixel>(
&self,
_: &mut [u8],
_: &[FullPixel],
_: impl Fn(&FullPixel) -> &NoneMore
)
Write pixels to a slice of bytes. Recursively do this for all channels.
sourceimpl ValidateResult for NoneMore
impl ValidateResult for NoneMore
sourcefn validate_result(
&self,
_: &Self,
_: ValidationOptions,
_: String
) -> ValidationResult
fn validate_result(
&self,
_: &Self,
_: ValidationOptions,
_: String
) -> ValidationResult
Compare self with the other. Exceptional behaviour: Read more
sourcefn assert_equals_result(&self, result: &Self)
fn assert_equals_result(&self, result: &Self)
Compare self with the other. Panics if not equal. Read more
sourceimpl WritableChannelsDescription<NoneMore> for NoneMore
impl WritableChannelsDescription<NoneMore> for NoneMore
type RecursiveWriter = NoneMore
type RecursiveWriter = NoneMore
A type that has a recursive entry for each channel in the image, which must accept the desired pixel type. Read more
sourcefn create_recursive_writer(&self, _: &ChannelList) -> Self::RecursiveWriter
fn create_recursive_writer(&self, _: &ChannelList) -> Self::RecursiveWriter
Create the temporary writer, accepting the sorted list of channels from channel_descriptions_list
.
sourcefn channel_descriptions_list(&self) -> SmallVec<[ChannelDescription; 5]>
fn channel_descriptions_list(&self) -> SmallVec<[ChannelDescription; 5]>
Return all the channels that should actually end up in the image, in any order.
sourceimpl<'slf> WritableLayers<'slf> for NoneMore
impl<'slf> WritableLayers<'slf> for NoneMore
sourcefn infer_headers(&self, _: &ImageAttributes) -> Headers
fn infer_headers(&self, _: &ImageAttributes) -> Headers
Generate the file meta data for this list of layers
impl Copy for NoneMore
impl Eq for NoneMore
impl StructuralEq for NoneMore
impl StructuralPartialEq for NoneMore
Auto Trait Implementations
impl RefUnwindSafe for NoneMore
impl Send for NoneMore
impl Sync for NoneMore
impl Unpin for NoneMore
impl UnwindSafe for NoneMore
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<R, P> ReadPrimitive<R> for P where
R: Read + ReadEndian<P>,
P: Default,
impl<R, P> ReadPrimitive<R> for P where
R: Read + ReadEndian<P>,
P: Default,
sourcefn read_from_little_endian(read: &mut R) -> Result<Self, Error>
fn read_from_little_endian(read: &mut R) -> Result<Self, Error>
Read this value from the supplied reader. Same as ReadEndian::read_from_little_endian()
.
sourcefn read_from_big_endian(read: &mut R) -> Result<Self, Error>
fn read_from_big_endian(read: &mut R) -> Result<Self, Error>
Read this value from the supplied reader. Same as ReadEndian::read_from_big_endian()
.
sourcefn read_from_native_endian(read: &mut R) -> Result<Self, Error>
fn read_from_native_endian(read: &mut R) -> Result<Self, Error>
Read this value from the supplied reader. Same as ReadEndian::read_from_native_endian()
.
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)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more