#[repr(i32)]pub enum ARPixelFormat {
Show 16 variants
Invalid = -1,
RGB = 0,
BGR = 1,
RGBA = 2,
BGRA = 3,
ABGR = 4,
MONO = 5,
ARGB = 6,
TwoVuy = 7,
Yuvs = 8,
Rgb565 = 9,
Rgba5551 = 10,
Rgba4444 = 11,
FourTwoZeroV = 12,
FourTwoZeroF = 13,
NV21 = 14,
}Variants§
Invalid = -1
RGB = 0
BGR = 1
RGBA = 2
BGRA = 3
ABGR = 4
MONO = 5
ARGB = 6
TwoVuy = 7
Yuvs = 8
Rgb565 = 9
Rgba5551 = 10
Rgba4444 = 11
FourTwoZeroV = 12
FourTwoZeroF = 13
NV21 = 14
Trait Implementations§
Source§impl Clone for ARPixelFormat
impl Clone for ARPixelFormat
Source§fn clone(&self) -> ARPixelFormat
fn clone(&self) -> ARPixelFormat
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 ARPixelFormat
impl Debug for ARPixelFormat
Source§impl Default for ARPixelFormat
impl Default for ARPixelFormat
Source§impl PartialEq for ARPixelFormat
impl PartialEq for ARPixelFormat
impl Copy for ARPixelFormat
impl Eq for ARPixelFormat
impl StructuralPartialEq for ARPixelFormat
Auto Trait Implementations§
impl Freeze for ARPixelFormat
impl RefUnwindSafe for ARPixelFormat
impl Send for ARPixelFormat
impl Sync for ARPixelFormat
impl Unpin for ARPixelFormat
impl UnsafeUnpin for ARPixelFormat
impl UnwindSafe for ARPixelFormat
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