#[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
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