#[repr(C)]pub struct _STARTUPINFOA {Show 18 fields
pub cb: DWORD,
pub lpReserved: LPSTR,
pub lpDesktop: LPSTR,
pub lpTitle: LPSTR,
pub dwX: DWORD,
pub dwY: DWORD,
pub dwXSize: DWORD,
pub dwYSize: DWORD,
pub dwXCountChars: DWORD,
pub dwYCountChars: DWORD,
pub dwFillAttribute: DWORD,
pub dwFlags: DWORD,
pub wShowWindow: WORD,
pub cbReserved2: WORD,
pub lpReserved2: LPBYTE,
pub hStdInput: HANDLE,
pub hStdOutput: HANDLE,
pub hStdError: HANDLE,
}
Fields§
§cb: DWORD
§lpReserved: LPSTR
§lpDesktop: LPSTR
§lpTitle: LPSTR
§dwX: DWORD
§dwY: DWORD
§dwXSize: DWORD
§dwYSize: DWORD
§dwXCountChars: DWORD
§dwYCountChars: DWORD
§dwFillAttribute: DWORD
§dwFlags: DWORD
§wShowWindow: WORD
§cbReserved2: WORD
§lpReserved2: LPBYTE
§hStdInput: HANDLE
§hStdOutput: HANDLE
§hStdError: HANDLE
Trait Implementations§
Source§impl Clone for _STARTUPINFOA
impl Clone for _STARTUPINFOA
Source§fn clone(&self) -> _STARTUPINFOA
fn clone(&self) -> _STARTUPINFOA
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 _STARTUPINFOA
impl Debug for _STARTUPINFOA
Source§impl Ord for _STARTUPINFOA
impl Ord for _STARTUPINFOA
Source§fn cmp(&self, other: &_STARTUPINFOA) -> Ordering
fn cmp(&self, other: &_STARTUPINFOA) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for _STARTUPINFOA
impl PartialEq for _STARTUPINFOA
Source§impl PartialOrd for _STARTUPINFOA
impl PartialOrd for _STARTUPINFOA
impl Copy for _STARTUPINFOA
impl Eq for _STARTUPINFOA
impl StructuralPartialEq for _STARTUPINFOA
Auto Trait Implementations§
impl Freeze for _STARTUPINFOA
impl RefUnwindSafe for _STARTUPINFOA
impl !Send for _STARTUPINFOA
impl !Sync for _STARTUPINFOA
impl Unpin for _STARTUPINFOA
impl UnwindSafe for _STARTUPINFOA
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