#[repr(i32)]pub enum PixelGeometry {
Unknown = 0,
RGBH = 1,
BGRH = 2,
RGBV = 3,
BGRV = 4,
}
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for PixelGeometry
impl Clone for PixelGeometry
Source§fn clone(&self) -> PixelGeometry
fn clone(&self) -> PixelGeometry
Returns a copy 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 PixelGeometry
impl Debug for PixelGeometry
Source§impl Default for PixelGeometry
impl Default for PixelGeometry
Source§fn default() -> PixelGeometry
fn default() -> PixelGeometry
Returns the “default value” for a type. Read more
Source§impl PartialEq for PixelGeometry
impl PartialEq for PixelGeometry
impl Copy for PixelGeometry
impl Eq for PixelGeometry
impl StructuralPartialEq for PixelGeometry
Auto Trait Implementations§
impl Freeze for PixelGeometry
impl RefUnwindSafe for PixelGeometry
impl Send for PixelGeometry
impl Sync for PixelGeometry
impl Unpin for PixelGeometry
impl UnwindSafe for PixelGeometry
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