pub enum RasterFormat {
Raster1555 = 1,
Raster565 = 2,
Raster4444 = 3,
RasterLum = 4,
Raster8888 = 5,
Raster888 = 6,
Raster555 = 10,
}
Variants§
Raster1555 = 1
Raster565 = 2
Raster4444 = 3
RasterLum = 4
Raster8888 = 5
Raster888 = 6
Raster555 = 10
Trait Implementations§
Source§impl Clone for RasterFormat
impl Clone for RasterFormat
Source§fn clone(&self) -> RasterFormat
fn clone(&self) -> RasterFormat
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 RasterFormat
impl Debug for RasterFormat
Source§impl PartialEq for RasterFormat
impl PartialEq for RasterFormat
impl Copy for RasterFormat
impl Eq for RasterFormat
impl StructuralPartialEq for RasterFormat
Auto Trait Implementations§
impl Freeze for RasterFormat
impl RefUnwindSafe for RasterFormat
impl Send for RasterFormat
impl Sync for RasterFormat
impl Unpin for RasterFormat
impl UnwindSafe for RasterFormat
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