pub enum FormatConfidence {
Confirmed,
Inferred,
}Expand description
How confidently the pixel format is known — the source research’s honest distinction (never present an inference as a confirmed fact).
Variants§
Confirmed
Discriminator (3, 5): confirmed ASTC 4x4.
Inferred
Discriminator (1, 1) or (3, 1): inferred ASTC 4x4 from a matching
payload type + size (decoded successfully, but not asserted by the format).
Trait Implementations§
Source§impl Clone for FormatConfidence
impl Clone for FormatConfidence
Source§fn clone(&self) -> FormatConfidence
fn clone(&self) -> FormatConfidence
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for FormatConfidence
Source§impl Debug for FormatConfidence
impl Debug for FormatConfidence
impl Eq for FormatConfidence
Source§impl PartialEq for FormatConfidence
impl PartialEq for FormatConfidence
Source§fn eq(&self, other: &FormatConfidence) -> bool
fn eq(&self, other: &FormatConfidence) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for FormatConfidence
Auto Trait Implementations§
impl Freeze for FormatConfidence
impl RefUnwindSafe for FormatConfidence
impl Send for FormatConfidence
impl Sync for FormatConfidence
impl Unpin for FormatConfidence
impl UnsafeUnpin for FormatConfidence
impl UnwindSafe for FormatConfidence
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