#[repr(C, packed(2))]pub struct Image {
pub LeftEdge: WORD,
pub TopEdge: WORD,
pub Width: WORD,
pub Height: WORD,
pub Depth: WORD,
pub ImageData: *mut UWORD,
pub PlanePick: UBYTE,
pub PlaneOnOff: UBYTE,
pub NextImage: *mut Image,
}Fields§
§LeftEdge: WORD§TopEdge: WORD§Width: WORD§Height: WORD§Depth: WORD§ImageData: *mut UWORD§PlanePick: UBYTE§PlaneOnOff: UBYTE§NextImage: *mut ImageTrait Implementations§
Auto Trait Implementations§
impl Freeze for Image
impl RefUnwindSafe for Image
impl !Send for Image
impl !Sync for Image
impl Unpin for Image
impl UnwindSafe for Image
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