Enum sdl2_sys::SDL_BitmapOrder
source · #[repr(u32)]pub enum SDL_BitmapOrder {
SDL_BITMAPORDER_NONE = 0,
SDL_BITMAPORDER_4321 = 1,
SDL_BITMAPORDER_1234 = 2,
}
Expand description
Bitmap pixel order, high bit -> low bit.
Variants§
Trait Implementations§
source§impl Clone for SDL_BitmapOrder
impl Clone for SDL_BitmapOrder
source§fn clone(&self) -> SDL_BitmapOrder
fn clone(&self) -> SDL_BitmapOrder
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 Hash for SDL_BitmapOrder
impl Hash for SDL_BitmapOrder
source§impl PartialEq for SDL_BitmapOrder
impl PartialEq for SDL_BitmapOrder
source§fn eq(&self, other: &SDL_BitmapOrder) -> bool
fn eq(&self, other: &SDL_BitmapOrder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for SDL_BitmapOrder
impl Eq for SDL_BitmapOrder
impl StructuralPartialEq for SDL_BitmapOrder
Auto Trait Implementations§
impl Freeze for SDL_BitmapOrder
impl RefUnwindSafe for SDL_BitmapOrder
impl Send for SDL_BitmapOrder
impl Sync for SDL_BitmapOrder
impl Unpin for SDL_BitmapOrder
impl UnwindSafe for SDL_BitmapOrder
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