#[repr(C)]pub struct STARTUPINFO<'a, 'b> {
pub dwX: u32,
pub dwY: u32,
pub dwXSize: u32,
pub dwYSize: u32,
pub dwXCountChars: u32,
pub dwYCountChars: u32,
pub dwFillAttribute: u32,
pub dwFlags: STARTF,
pub hStdInput: HPIPE,
pub hStdOutput: HPIPE,
pub hStdError: HPIPE,
/* private fields */
}
Available on crate feature
kernel
only.Expand description
STARTUPINFO
struct.
Fields§
§dwX: u32
§dwY: u32
§dwXSize: u32
§dwYSize: u32
§dwXCountChars: u32
§dwYCountChars: u32
§dwFillAttribute: u32
§dwFlags: STARTF
§hStdInput: HPIPE
§hStdOutput: HPIPE
§hStdError: HPIPE
Implementations§
Source§impl<'a, 'b> STARTUPINFO<'a, 'b>
impl<'a, 'b> STARTUPINFO<'a, 'b>
Sourcepub fn set_lpDesktop(&mut self, buf: Option<&'a mut WString>)
pub fn set_lpDesktop(&mut self, buf: Option<&'a mut WString>)
Sets the string field.
Sourcepub fn set_lpTitle(&mut self, buf: Option<&'a mut WString>)
pub fn set_lpTitle(&mut self, buf: Option<&'a mut WString>)
Sets the string field.
Sourcepub const fn wShowWindow(&self) -> SW
pub const fn wShowWindow(&self) -> SW
Returns the wShowWindow
field.
Sourcepub const fn set_wShowWindow(&mut self, val: SW)
pub const fn set_wShowWindow(&mut self, val: SW)
Sets the wShowWindow
field.
Trait Implementations§
Auto Trait Implementations§
impl<'a, 'b> Freeze for STARTUPINFO<'a, 'b>
impl<'a, 'b> RefUnwindSafe for STARTUPINFO<'a, 'b>
impl<'a, 'b> !Send for STARTUPINFO<'a, 'b>
impl<'a, 'b> !Sync for STARTUPINFO<'a, 'b>
impl<'a, 'b> Unpin for STARTUPINFO<'a, 'b>
impl<'a, 'b> !UnwindSafe for STARTUPINFO<'a, 'b>
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