#[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
sourceimpl Clone for BITMAPINFOHEADER
impl Clone for BITMAPINFOHEADER
sourcefn clone(&self) -> BITMAPINFOHEADER
fn clone(&self) -> BITMAPINFOHEADER
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
impl Copy for BITMAPINFOHEADER
Auto Trait Implementations
impl RefUnwindSafe for BITMAPINFOHEADER
impl Send for BITMAPINFOHEADER
impl Sync for BITMAPINFOHEADER
impl Unpin for BITMAPINFOHEADER
impl UnwindSafe for BITMAPINFOHEADER
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more