#[repr(C)]pub struct STARTUPINFOW {Show 18 fields
pub cb: u32,
pub lpReserved: PWSTR,
pub lpDesktop: PWSTR,
pub lpTitle: PWSTR,
pub dwX: u32,
pub dwY: u32,
pub dwXSize: u32,
pub dwYSize: u32,
pub dwXCountChars: u32,
pub dwYCountChars: u32,
pub dwFillAttribute: u32,
pub dwFlags: STARTUPINFOW_FLAGS,
pub wShowWindow: u16,
pub cbReserved2: u16,
pub lpReserved2: *mut u8,
pub hStdInput: HANDLE,
pub hStdOutput: HANDLE,
pub hStdError: HANDLE,
}Fields§
§cb: u32§lpReserved: PWSTR§lpDesktop: PWSTR§lpTitle: PWSTR§dwX: u32§dwY: u32§dwXSize: u32§dwYSize: u32§dwXCountChars: u32§dwYCountChars: u32§dwFillAttribute: u32§dwFlags: STARTUPINFOW_FLAGS§wShowWindow: u16§cbReserved2: u16§lpReserved2: *mut u8§hStdInput: HANDLE§hStdOutput: HANDLE§hStdError: HANDLETrait Implementations§
Source§impl Abi for STARTUPINFOW
impl Abi for STARTUPINFOW
Source§type Abi = STARTUPINFOW
type Abi = STARTUPINFOW
The abi representation of the implementing type. Read more
type DefaultType = STARTUPINFOW
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 STARTUPINFOW
impl Clone for STARTUPINFOW
Source§fn clone(&self) -> STARTUPINFOW
fn clone(&self) -> STARTUPINFOW
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 STARTUPINFOW
impl Debug for STARTUPINFOW
Source§impl Default for STARTUPINFOW
impl Default for STARTUPINFOW
Source§impl PartialEq for STARTUPINFOW
impl PartialEq for STARTUPINFOW
impl Copy for STARTUPINFOW
impl Eq for STARTUPINFOW
Auto Trait Implementations§
impl Freeze for STARTUPINFOW
impl RefUnwindSafe for STARTUPINFOW
impl !Send for STARTUPINFOW
impl !Sync for STARTUPINFOW
impl Unpin for STARTUPINFOW
impl UnwindSafe for STARTUPINFOW
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