#[repr(C)]pub struct CREATESTRUCTA {
pub lpCreateParams: *mut c_void,
pub hInstance: HINSTANCE,
pub hMenu: HMENU,
pub hwndParent: HWND,
pub cy: i32,
pub cx: i32,
pub y: i32,
pub x: i32,
pub style: i32,
pub lpszName: PSTR,
pub lpszClass: PSTR,
pub dwExStyle: u32,
}
Fields§
§lpCreateParams: *mut c_void
§hInstance: HINSTANCE
§hMenu: HMENU
§hwndParent: HWND
§cy: i32
§cx: i32
§y: i32
§x: i32
§style: i32
§lpszName: PSTR
§lpszClass: PSTR
§dwExStyle: u32
Trait Implementations§
Source§impl Abi for CREATESTRUCTA
impl Abi for CREATESTRUCTA
Source§type Abi = CREATESTRUCTA
type Abi = CREATESTRUCTA
The abi representation of the implementing type. Read more
type DefaultType = CREATESTRUCTA
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 CREATESTRUCTA
impl Clone for CREATESTRUCTA
Source§fn clone(&self) -> CREATESTRUCTA
fn clone(&self) -> CREATESTRUCTA
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 Debug for CREATESTRUCTA
impl Debug for CREATESTRUCTA
Source§impl Default for CREATESTRUCTA
impl Default for CREATESTRUCTA
Source§impl PartialEq for CREATESTRUCTA
impl PartialEq for CREATESTRUCTA
impl Copy for CREATESTRUCTA
impl Eq for CREATESTRUCTA
Auto Trait Implementations§
impl Freeze for CREATESTRUCTA
impl RefUnwindSafe for CREATESTRUCTA
impl !Send for CREATESTRUCTA
impl !Sync for CREATESTRUCTA
impl Unpin for CREATESTRUCTA
impl UnwindSafe for CREATESTRUCTA
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