pub struct Bitmap {
pub gfx: Vec<u8>,
pub palette: Vec<u8>,
pub map: Vec<u8>,
pub meta: Vec<u8>,
pub spec: BitmapSpec,
}
Fields§
§gfx: Vec<u8>
§palette: Vec<u8>
§map: Vec<u8>
§meta: Vec<u8>
§spec: BitmapSpec
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Bitmap
impl RefUnwindSafe for Bitmap
impl Send for Bitmap
impl Sync for Bitmap
impl Unpin for Bitmap
impl UnwindSafe for Bitmap
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