pub enum LevelMode {
Singular,
MipMap,
RipMap,
}
Expand description
Whether to also store increasingly smaller versions of the original image.
Variants
Singular
Only a single level.
MipMap
Levels with a similar aspect ratio.
RipMap
Levels with all possible aspect ratios.
Trait Implementations
impl Copy for LevelMode
impl Eq for LevelMode
impl StructuralEq for LevelMode
impl StructuralPartialEq for LevelMode
Auto Trait Implementations
impl RefUnwindSafe for LevelMode
impl Send for LevelMode
impl Sync for LevelMode
impl Unpin for LevelMode
impl UnwindSafe for LevelMode
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