pub struct STARTF(/* private fields */);
Available on crate feature
kernel
only.Expand description
CreateProcess
dwFlags
(u32
).
This is a bitflag constant.
Implementations§
Source§impl STARTF
impl STARTF
Sourcepub const unsafe fn as_mut(&mut self) -> &mut u32
pub const unsafe fn as_mut(&mut self) -> &mut u32
Returns a mutable reference to the underlying raw value.
§Safety
Be sure the integer being set is meaningful for the actual type.
Sourcepub const unsafe fn from_raw(v: u32) -> Self
pub const unsafe fn from_raw(v: u32) -> Self
Constructs a new object by wrapping the given integer value.
§Safety
Be sure the given value is meaningful for the actual type.
Sourcepub const fn raw(&self) -> u32
pub const fn raw(&self) -> u32
Returns the primitive integer underlying value.
This method is similar to Into
, but it
is const
, therefore it can be used in
const contexts.
Source§impl STARTF
impl STARTF
pub const FORCEONFEEDBACK: Self
pub const FORCEOFFFEEDBACK: Self
pub const PREVENTPINNING: Self
pub const RUNFULLSCREEN: Self
pub const TITLEISAPPID: Self
pub const TITLEISLINKNAME: Self
pub const UNTRUSTEDSOURCE: Self
pub const USECOUNTCHARS: Self
pub const USEFILLATTRIBUTE: Self
pub const USEHOTKEY: Self
pub const USEPOSITION: Self
pub const USESHOWWINDOW: Self
pub const USESIZE: Self
pub const USESTDHANDLES: Self
Trait Implementations§
Source§impl BitAndAssign for STARTF
impl BitAndAssign for STARTF
Source§fn bitand_assign(&mut self, rhs: Self)
fn bitand_assign(&mut self, rhs: Self)
Performs the
&=
operation. Read moreSource§impl BitOrAssign for STARTF
impl BitOrAssign for STARTF
Source§fn bitor_assign(&mut self, rhs: Self)
fn bitor_assign(&mut self, rhs: Self)
Performs the
|=
operation. Read moreSource§impl BitXorAssign for STARTF
impl BitXorAssign for STARTF
Source§fn bitxor_assign(&mut self, rhs: Self)
fn bitxor_assign(&mut self, rhs: Self)
Performs the
^=
operation. Read moreSource§impl Ord for STARTF
impl Ord for STARTF
Source§impl PartialOrd for STARTF
impl PartialOrd for STARTF
impl Copy for STARTF
impl Eq for STARTF
impl StructuralPartialEq for STARTF
Auto Trait Implementations§
impl Freeze for STARTF
impl RefUnwindSafe for STARTF
impl Send for STARTF
impl Sync for STARTF
impl Unpin for STARTF
impl UnwindSafe for STARTF
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