#[repr(C)]pub struct userBITMAP {
pub bmType: i32,
pub bmWidth: i32,
pub bmHeight: i32,
pub bmWidthBytes: i32,
pub bmPlanes: u16,
pub bmBitsPixel: u16,
pub cbSize: u32,
pub pBuffer: [u8; 1],
}Fields§
§bmType: i32§bmWidth: i32§bmHeight: i32§bmWidthBytes: i32§bmPlanes: u16§bmBitsPixel: u16§cbSize: u32§pBuffer: [u8; 1]Trait Implementations§
Source§impl Abi for userBITMAP
impl Abi for userBITMAP
Source§type Abi = userBITMAP
type Abi = userBITMAP
The abi representation of the implementing type. Read more
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.
Source§unsafe fn from_abi(abi: Self::Abi) -> Result<Self, Error>
unsafe fn from_abi(abi: Self::Abi) -> Result<Self, Error>
Casts the ABI representation to a Rust object by taking ownership of the bits.
fn drop_param(_: &mut Param<'_, Self>)
Source§impl Clone for userBITMAP
impl Clone for userBITMAP
Source§fn clone(&self) -> userBITMAP
fn clone(&self) -> userBITMAP
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 userBITMAP
impl Debug for userBITMAP
Source§impl Default for userBITMAP
impl Default for userBITMAP
Source§impl PartialEq for userBITMAP
impl PartialEq for userBITMAP
impl Copy for userBITMAP
impl Eq for userBITMAP
Auto Trait Implementations§
impl Freeze for userBITMAP
impl RefUnwindSafe for userBITMAP
impl Send for userBITMAP
impl Sync for userBITMAP
impl Unpin for userBITMAP
impl UnwindSafe for userBITMAP
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