pub enum Levels<Samples> {
Singular(Samples),
Mip {
rounding_mode: RoundingMode,
level_data: LevelMaps<Samples>,
},
Rip {
rounding_mode: RoundingMode,
level_data: RipMaps<Samples>,
},
}
Expand description
One or multiple resolution levels of the same image.
Samples
can be FlatSamples
.
Variants
Singular(Samples)
A single image without smaller versions of itself.
If you only want to handle exclusively this case, use Samples
directly, and not Levels<Samples>
.
Mip
Fields
rounding_mode: RoundingMode
Whether to round up or down when calculating Mip/Rip levels.
level_data: LevelMaps<Samples>
The smaller versions of the original.
Contains uniformly scaled smaller versions of the original.
Rip
Fields
rounding_mode: RoundingMode
Whether to round up or down when calculating Mip/Rip levels.
level_data: RipMaps<Samples>
The smaller versions of the original.
Contains any possible combination of smaller versions of the original.
Implementations
sourceimpl<LevelSamples> Levels<LevelSamples>
impl<LevelSamples> Levels<LevelSamples>
sourcepub fn get_level(&self, level: Vec2<usize>) -> Result<&LevelSamples>
pub fn get_level(&self, level: Vec2<usize>) -> Result<&LevelSamples>
Get a resolution level by index, sorted by size, decreasing.
sourcepub fn get_level_mut(&mut self, level: Vec2<usize>) -> Result<&mut LevelSamples>
pub fn get_level_mut(&mut self, level: Vec2<usize>) -> Result<&mut LevelSamples>
Get a resolution level by index, sorted by size, decreasing.
sourcepub fn levels_as_slice(&self) -> &[LevelSamples]ⓘNotable traits for &'_ [u8]impl<'_> Read for &'_ [u8]impl<'_> Write for &'_ mut [u8]
pub fn levels_as_slice(&self) -> &[LevelSamples]ⓘNotable traits for &'_ [u8]impl<'_> Read for &'_ [u8]impl<'_> Write for &'_ mut [u8]
Get a slice of all resolution levels, sorted by size, decreasing.
sourcepub fn levels_as_slice_mut(&mut self) -> &mut [LevelSamples]ⓘNotable traits for &'_ [u8]impl<'_> Read for &'_ [u8]impl<'_> Write for &'_ mut [u8]
pub fn levels_as_slice_mut(&mut self) -> &mut [LevelSamples]ⓘNotable traits for &'_ [u8]impl<'_> Read for &'_ [u8]impl<'_> Write for &'_ mut [u8]
Get a mutable slice of all resolution levels, sorted by size, decreasing.
sourcepub fn level_mode(&self) -> LevelMode
pub fn level_mode(&self) -> LevelMode
Whether this stores multiple resolution levels.
Trait Implementations
sourceimpl<S> ValidateResult for Levels<S> where
S: ValidateResult,
impl<S> ValidateResult for Levels<S> where
S: ValidateResult,
sourcefn validate_result(
&self,
other: &Self,
options: ValidationOptions,
location: String
) -> ValidationResult
fn validate_result(
&self,
other: &Self,
options: ValidationOptions,
location: 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<'samples, LevelSamples> WritableSamples<'samples> for Levels<LevelSamples> where
LevelSamples: WritableLevel<'samples>,
impl<'samples, LevelSamples> WritableSamples<'samples> for Levels<LevelSamples> where
LevelSamples: WritableLevel<'samples>,
sourcefn sample_type(&self) -> SampleType
fn sample_type(&self) -> SampleType
Generate the file meta data regarding the number type of this storage
sourcefn infer_level_modes(&self) -> (LevelMode, RoundingMode)
fn infer_level_modes(&self) -> (LevelMode, RoundingMode)
Generate the file meta data regarding resolution levels
type Writer = LevelsWriter<<LevelSamples as WritableLevel<'samples>>::Writer>
type Writer = LevelsWriter<<LevelSamples as WritableLevel<'samples>>::Writer>
The type of the temporary writer for this sample storage
sourcefn create_samples_writer(&'samples self, header: &Header) -> Self::Writer
fn create_samples_writer(&'samples self, header: &Header) -> Self::Writer
Create a temporary writer for this sample storage
impl<Samples: Eq> Eq for Levels<Samples>
impl<Samples> StructuralEq for Levels<Samples>
impl<Samples> StructuralPartialEq for Levels<Samples>
Auto Trait Implementations
impl<Samples> RefUnwindSafe for Levels<Samples> where
Samples: RefUnwindSafe,
impl<Samples> Send for Levels<Samples> where
Samples: Send,
impl<Samples> Sync for Levels<Samples> where
Samples: Sync,
impl<Samples> Unpin for Levels<Samples> where
Samples: Unpin,
impl<Samples> UnwindSafe for Levels<Samples> where
Samples: 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)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more