#[repr(u32)]pub enum PackAstcQualityLevel {
Fastest = 0,
Fast = 10,
Medium = 60,
Thorough = 98,
Exhaustive = 100,
}
Expand description
Quality level for ASTC compression.
This only applies to Arm’s ASTC encoder, which is in libktx-rs-sys/build/KTX-Software/lib/astc-encoder
.
Variants§
Trait Implementations§
Source§impl Clone for PackAstcQualityLevel
impl Clone for PackAstcQualityLevel
Source§fn clone(&self) -> PackAstcQualityLevel
fn clone(&self) -> PackAstcQualityLevel
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for PackAstcQualityLevel
impl Debug for PackAstcQualityLevel
Source§impl PartialEq for PackAstcQualityLevel
impl PartialEq for PackAstcQualityLevel
impl Copy for PackAstcQualityLevel
impl Eq for PackAstcQualityLevel
impl StructuralPartialEq for PackAstcQualityLevel
Auto Trait Implementations§
impl Freeze for PackAstcQualityLevel
impl RefUnwindSafe for PackAstcQualityLevel
impl Send for PackAstcQualityLevel
impl Sync for PackAstcQualityLevel
impl Unpin for PackAstcQualityLevel
impl UnwindSafe for PackAstcQualityLevel
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more