#[repr(C)]pub struct BITMAPINFOHEADER {
pub biSize: DWORD,
pub biWidth: LONG,
pub biHeight: LONG,
pub biPlanes: WORD,
pub biBitCount: WORD,
pub biCompression: DWORD,
pub biSizeImage: DWORD,
pub biXPelsPerMeter: LONG,
pub biYPelsPerMeter: LONG,
pub biClrUsed: DWORD,
pub biClrImportant: DWORD,
}
Fields§
§biSize: DWORD
§biWidth: LONG
§biHeight: LONG
§biPlanes: WORD
§biBitCount: WORD
§biCompression: DWORD
§biSizeImage: DWORD
§biXPelsPerMeter: LONG
§biYPelsPerMeter: LONG
§biClrUsed: DWORD
§biClrImportant: DWORD
Trait Implementations§
Source§impl Clone for BITMAPINFOHEADER
impl Clone for BITMAPINFOHEADER
Source§fn clone(&self) -> BITMAPINFOHEADER
fn clone(&self) -> BITMAPINFOHEADER
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 BITMAPINFOHEADER
impl Debug for BITMAPINFOHEADER
Source§impl Default for BITMAPINFOHEADER
impl Default for BITMAPINFOHEADER
Source§fn default() -> BITMAPINFOHEADER
fn default() -> BITMAPINFOHEADER
Returns the “default value” for a type. Read more
impl Copy for BITMAPINFOHEADER
Auto Trait Implementations§
impl Freeze for BITMAPINFOHEADER
impl RefUnwindSafe for BITMAPINFOHEADER
impl Send for BITMAPINFOHEADER
impl Sync for BITMAPINFOHEADER
impl Unpin for BITMAPINFOHEADER
impl UnwindSafe for BITMAPINFOHEADER
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