#[repr(C, packed(2))]pub struct BITMAPFILEHEADER {
pub bfType: u16,
pub bfSize: u32,
pub bfReserved1: u16,
pub bfReserved2: u16,
pub bfOffBits: u32,
}
Fields§
§bfType: u16
§bfSize: u32
§bfReserved1: u16
§bfReserved2: u16
§bfOffBits: u32
Trait Implementations§
Source§impl Abi for BITMAPFILEHEADER
impl Abi for BITMAPFILEHEADER
Source§type Abi = BITMAPFILEHEADER
type Abi = BITMAPFILEHEADER
The abi representation of the implementing type. Read more
type DefaultType = BITMAPFILEHEADER
Source§fn ok(value: &Self::DefaultType) -> Result<Self, Error>
fn ok(value: &Self::DefaultType) -> Result<Self, Error>
Converts from
Self::DefaultType
to Result<T>
.Source§fn set_abi(&mut self) -> *mut Self::Abi
fn set_abi(&mut self) -> *mut Self::Abi
Returns a pointer for setting the object’s value via an ABI call.
fn drop_param(_: &mut Param<'_, Self>)
Source§impl Clone for BITMAPFILEHEADER
impl Clone for BITMAPFILEHEADER
Source§fn clone(&self) -> BITMAPFILEHEADER
fn clone(&self) -> BITMAPFILEHEADER
Returns a copy 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 PartialEq for BITMAPFILEHEADER
impl PartialEq for BITMAPFILEHEADER
impl Copy for BITMAPFILEHEADER
impl Eq for BITMAPFILEHEADER
Auto Trait Implementations§
impl Freeze for BITMAPFILEHEADER
impl RefUnwindSafe for BITMAPFILEHEADER
impl Send for BITMAPFILEHEADER
impl Sync for BITMAPFILEHEADER
impl Unpin for BITMAPFILEHEADER
impl UnwindSafe for BITMAPFILEHEADER
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