pub struct StaticBitmap {
pub gfx: &'static [u8],
pub palette: &'static [u8],
pub map: &'static [u8],
pub meta: &'static [u8],
pub spec: BitmapSpec,
}Fields§
§gfx: &'static [u8]§palette: &'static [u8]§map: &'static [u8]§meta: &'static [u8]§spec: BitmapSpecTrait Implementations§
Source§impl Clone for StaticBitmap
impl Clone for StaticBitmap
Source§fn clone(&self) -> StaticBitmap
fn clone(&self) -> StaticBitmap
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 moreAuto Trait Implementations§
impl Freeze for StaticBitmap
impl RefUnwindSafe for StaticBitmap
impl Send for StaticBitmap
impl Sync for StaticBitmap
impl Unpin for StaticBitmap
impl UnwindSafe for StaticBitmap
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