#[repr(u32)]pub enum VirtualPixelMethod {
Show 17 variants
Undefined = 0,
Background = 1,
Dither = 2,
Edge = 3,
Mirror = 4,
Random = 5,
Tile = 6,
Transparent = 7,
Mask = 8,
Black = 9,
Gray = 10,
White = 11,
HorizontalTile = 12,
VerticalTile = 13,
HorizontalTileEdge = 14,
VerticalTileEdge = 15,
CheckerTile = 16,
}
Variants§
Undefined = 0
Background = 1
Dither = 2
Edge = 3
Mirror = 4
Random = 5
Tile = 6
Transparent = 7
Mask = 8
Black = 9
Gray = 10
White = 11
HorizontalTile = 12
VerticalTile = 13
HorizontalTileEdge = 14
VerticalTileEdge = 15
CheckerTile = 16
Trait Implementations§
Source§impl Clone for VirtualPixelMethod
impl Clone for VirtualPixelMethod
Source§fn clone(&self) -> VirtualPixelMethod
fn clone(&self) -> VirtualPixelMethod
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 VirtualPixelMethod
impl Debug for VirtualPixelMethod
Source§impl Hash for VirtualPixelMethod
impl Hash for VirtualPixelMethod
Source§impl PartialEq for VirtualPixelMethod
impl PartialEq for VirtualPixelMethod
impl Copy for VirtualPixelMethod
impl Eq for VirtualPixelMethod
impl StructuralPartialEq for VirtualPixelMethod
Auto Trait Implementations§
impl Freeze for VirtualPixelMethod
impl RefUnwindSafe for VirtualPixelMethod
impl Send for VirtualPixelMethod
impl Sync for VirtualPixelMethod
impl Unpin for VirtualPixelMethod
impl UnwindSafe for VirtualPixelMethod
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