#[repr(C)]pub struct BitmapInfoInterop {
pub width: c_uint,
pub height: c_uint,
pub pixelType: c_int,
}Expand description
Information about the bitmap represented by a bitmap-object.
Fields§
§width: c_uint< The width of the bitmap in pixels.
height: c_uint< The height of the bitmap in pixels.
pixelType: c_int< The pixel type of the bitmap.
Trait Implementations§
Source§impl Clone for BitmapInfoInterop
impl Clone for BitmapInfoInterop
Source§fn clone(&self) -> BitmapInfoInterop
fn clone(&self) -> BitmapInfoInterop
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 BitmapInfoInterop
impl Debug for BitmapInfoInterop
impl Copy for BitmapInfoInterop
Auto Trait Implementations§
impl Freeze for BitmapInfoInterop
impl RefUnwindSafe for BitmapInfoInterop
impl Send for BitmapInfoInterop
impl Sync for BitmapInfoInterop
impl Unpin for BitmapInfoInterop
impl UnsafeUnpin for BitmapInfoInterop
impl UnwindSafe for BitmapInfoInterop
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