#[repr(u8)]pub enum PF_A {
Argb8888 = 0,
Rgb888 = 1,
Rgb565 = 2,
Argb1555 = 3,
Argb4444 = 4,
L8 = 5,
Al44 = 6,
Al88 = 7,
}
Expand description
Pixel Format
Value on reset: 0
Variants§
Argb8888 = 0
0: ARGB8888
Rgb888 = 1
1: RGB888
Rgb565 = 2
2: RGB565
Argb1555 = 3
3: ARGB1555
Argb4444 = 4
4: ARGB4444
L8 = 5
5: L8 (8-bit luminance)
Al44 = 6
6: AL44 (4-bit alpha, 4-bit luminance)
Al88 = 7
7: AL88 (8-bit alpha, 8-bit luminance)
Trait Implementations§
impl Copy for PF_A
impl StructuralPartialEq for PF_A
Auto Trait Implementations§
impl Freeze for PF_A
impl RefUnwindSafe for PF_A
impl Send for PF_A
impl Sync for PF_A
impl Unpin for PF_A
impl UnwindSafe for PF_A
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