Enum Pf
#[repr(u8)]pub enum Pf {
ARGB8888 = 0,
RGB888 = 1,
RGB565 = 2,
ARGB1555 = 3,
ARGB4444 = 4,
L8 = 5,
AL44 = 6,
AL88 = 7,
}
Variants§
ARGB8888 = 0
ARGB8888
RGB888 = 1
RGB888
RGB565 = 2
RGB565
ARGB1555 = 3
ARGB1555
ARGB4444 = 4
ARGB4444
L8 = 5
L8 (8-bit luminance)
AL44 = 6
AL44 (4-bit alpha, 4-bit luminance)
AL88 = 7
AL88 (8-bit alpha, 8-bit luminance)
Implementations§
Trait Implementations§
§impl Ord for Pf
impl Ord for Pf
§impl PartialOrd for Pf
impl PartialOrd for Pf
impl Copy for Pf
impl Eq for Pf
impl StructuralPartialEq for Pf
Auto Trait Implementations§
impl Freeze for Pf
impl RefUnwindSafe for Pf
impl Send for Pf
impl Sync for Pf
impl Unpin for Pf
impl UnwindSafe for Pf
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