Struct ProcessInfoFlags
pub struct ProcessInfoFlags(/* private fields */);
Implementations§
§impl ProcessInfoFlags
impl ProcessInfoFlags
pub const STARTED: ProcessInfoFlags
pub const EXITED: ProcessInfoFlags
pub const DEBUGGER_ATTACHED: ProcessInfoFlags
§impl ProcessInfoFlags
impl ProcessInfoFlags
pub const fn empty() -> ProcessInfoFlags
pub const fn empty() -> ProcessInfoFlags
Get a flags value with all bits unset.
pub const fn all() -> ProcessInfoFlags
pub const fn all() -> ProcessInfoFlags
Get a flags value with all known bits set.
pub const fn bits(&self) -> u32
pub const fn bits(&self) -> u32
Get the underlying bits value.
The returned value is exactly the bits set in this flags value.
pub const fn from_bits(bits: u32) -> Option<ProcessInfoFlags>
pub const fn from_bits(bits: u32) -> Option<ProcessInfoFlags>
Convert from a bits value.
This method will return None
if any unknown bits are set.
pub const fn from_bits_truncate(bits: u32) -> ProcessInfoFlags
pub const fn from_bits_truncate(bits: u32) -> ProcessInfoFlags
Convert from a bits value, unsetting any unknown bits.
pub const fn from_bits_retain(bits: u32) -> ProcessInfoFlags
pub const fn from_bits_retain(bits: u32) -> ProcessInfoFlags
Convert from a bits value exactly.
pub fn from_name(name: &str) -> Option<ProcessInfoFlags>
pub fn from_name(name: &str) -> Option<ProcessInfoFlags>
Get a flags value with the bits of a flag with the given name set.
This method will return None
if name
is empty or doesn’t
correspond to any named flag.
pub const fn intersects(&self, other: ProcessInfoFlags) -> bool
pub const fn intersects(&self, other: ProcessInfoFlags) -> bool
Whether any set bits in a source flags value are also set in a target flags value.
pub const fn contains(&self, other: ProcessInfoFlags) -> bool
pub const fn contains(&self, other: ProcessInfoFlags) -> bool
Whether all set bits in a source flags value are also set in a target flags value.
pub fn insert(&mut self, other: ProcessInfoFlags)
pub fn insert(&mut self, other: ProcessInfoFlags)
The bitwise or (|
) of the bits in two flags values.
pub fn remove(&mut self, other: ProcessInfoFlags)
pub fn remove(&mut self, other: ProcessInfoFlags)
The intersection of a source flags value with the complement of a target flags value (&!
).
This method is not equivalent to self & !other
when other
has unknown bits set.
remove
won’t truncate other
, but the !
operator will.
pub fn toggle(&mut self, other: ProcessInfoFlags)
pub fn toggle(&mut self, other: ProcessInfoFlags)
The bitwise exclusive-or (^
) of the bits in two flags values.
pub fn set(&mut self, other: ProcessInfoFlags, value: bool)
pub fn set(&mut self, other: ProcessInfoFlags, value: bool)
Call insert
when value
is true
or remove
when value
is false
.
pub const fn intersection(self, other: ProcessInfoFlags) -> ProcessInfoFlags
pub const fn intersection(self, other: ProcessInfoFlags) -> ProcessInfoFlags
The bitwise and (&
) of the bits in two flags values.
pub const fn union(self, other: ProcessInfoFlags) -> ProcessInfoFlags
pub const fn union(self, other: ProcessInfoFlags) -> ProcessInfoFlags
The bitwise or (|
) of the bits in two flags values.
pub const fn difference(self, other: ProcessInfoFlags) -> ProcessInfoFlags
pub const fn difference(self, other: ProcessInfoFlags) -> ProcessInfoFlags
The intersection of a source flags value with the complement of a target flags value (&!
).
This method is not equivalent to self & !other
when other
has unknown bits set.
difference
won’t truncate other
, but the !
operator will.
pub const fn symmetric_difference(
self,
other: ProcessInfoFlags,
) -> ProcessInfoFlags
pub const fn symmetric_difference( self, other: ProcessInfoFlags, ) -> ProcessInfoFlags
The bitwise exclusive-or (^
) of the bits in two flags values.
pub const fn complement(self) -> ProcessInfoFlags
pub const fn complement(self) -> ProcessInfoFlags
The bitwise negation (!
) of the bits in a flags value, truncating the result.
§impl ProcessInfoFlags
impl ProcessInfoFlags
pub const fn iter(&self) -> Iter<ProcessInfoFlags> ⓘ
pub const fn iter(&self) -> Iter<ProcessInfoFlags> ⓘ
Yield a set of contained flags values.
Each yielded flags value will correspond to a defined named flag. Any unknown bits will be yielded together as a final flags value.
pub const fn iter_names(&self) -> IterNames<ProcessInfoFlags> ⓘ
pub const fn iter_names(&self) -> IterNames<ProcessInfoFlags> ⓘ
Yield a set of contained named flags values.
This method is like iter
, except only yields bits in contained named flags.
Any unknown bits, or bits not corresponding to a contained flag will not be yielded.
Trait Implementations§
§impl Binary for ProcessInfoFlags
impl Binary for ProcessInfoFlags
§impl BitAnd for ProcessInfoFlags
impl BitAnd for ProcessInfoFlags
§fn bitand(self, other: ProcessInfoFlags) -> ProcessInfoFlags
fn bitand(self, other: ProcessInfoFlags) -> ProcessInfoFlags
The bitwise and (&
) of the bits in two flags values.
§type Output = ProcessInfoFlags
type Output = ProcessInfoFlags
&
operator.§impl BitAndAssign for ProcessInfoFlags
impl BitAndAssign for ProcessInfoFlags
§fn bitand_assign(&mut self, other: ProcessInfoFlags)
fn bitand_assign(&mut self, other: ProcessInfoFlags)
The bitwise and (&
) of the bits in two flags values.
§impl BitOr for ProcessInfoFlags
impl BitOr for ProcessInfoFlags
§fn bitor(self, other: ProcessInfoFlags) -> ProcessInfoFlags
fn bitor(self, other: ProcessInfoFlags) -> ProcessInfoFlags
The bitwise or (|
) of the bits in two flags values.
§type Output = ProcessInfoFlags
type Output = ProcessInfoFlags
|
operator.§impl BitOrAssign for ProcessInfoFlags
impl BitOrAssign for ProcessInfoFlags
§fn bitor_assign(&mut self, other: ProcessInfoFlags)
fn bitor_assign(&mut self, other: ProcessInfoFlags)
The bitwise or (|
) of the bits in two flags values.
§impl BitXor for ProcessInfoFlags
impl BitXor for ProcessInfoFlags
§fn bitxor(self, other: ProcessInfoFlags) -> ProcessInfoFlags
fn bitxor(self, other: ProcessInfoFlags) -> ProcessInfoFlags
The bitwise exclusive-or (^
) of the bits in two flags values.
§type Output = ProcessInfoFlags
type Output = ProcessInfoFlags
^
operator.§impl BitXorAssign for ProcessInfoFlags
impl BitXorAssign for ProcessInfoFlags
§fn bitxor_assign(&mut self, other: ProcessInfoFlags)
fn bitxor_assign(&mut self, other: ProcessInfoFlags)
The bitwise exclusive-or (^
) of the bits in two flags values.
§impl Clone for ProcessInfoFlags
impl Clone for ProcessInfoFlags
§fn clone(&self) -> ProcessInfoFlags
fn clone(&self) -> ProcessInfoFlags
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more§impl Debug for ProcessInfoFlags
impl Debug for ProcessInfoFlags
§impl Extend<ProcessInfoFlags> for ProcessInfoFlags
impl Extend<ProcessInfoFlags> for ProcessInfoFlags
§fn extend<T>(&mut self, iterator: T)where
T: IntoIterator<Item = ProcessInfoFlags>,
fn extend<T>(&mut self, iterator: T)where
T: IntoIterator<Item = ProcessInfoFlags>,
The bitwise or (|
) of the bits in each flags value.
Source§fn extend_one(&mut self, item: A)
fn extend_one(&mut self, item: A)
extend_one
)Source§fn extend_reserve(&mut self, additional: usize)
fn extend_reserve(&mut self, additional: usize)
extend_one
)§impl Flags for ProcessInfoFlags
impl Flags for ProcessInfoFlags
§const FLAGS: &'static [Flag<ProcessInfoFlags>]
const FLAGS: &'static [Flag<ProcessInfoFlags>]
§fn from_bits_retain(bits: u32) -> ProcessInfoFlags
fn from_bits_retain(bits: u32) -> ProcessInfoFlags
§fn contains_unknown_bits(&self) -> bool
fn contains_unknown_bits(&self) -> bool
true
if any unknown bits are set.§fn from_bits_truncate(bits: Self::Bits) -> Self
fn from_bits_truncate(bits: Self::Bits) -> Self
§fn from_name(name: &str) -> Option<Self>
fn from_name(name: &str) -> Option<Self>
§fn iter_names(&self) -> IterNames<Self> ⓘ
fn iter_names(&self) -> IterNames<Self> ⓘ
§fn intersects(&self, other: Self) -> boolwhere
Self: Sized,
fn intersects(&self, other: Self) -> boolwhere
Self: Sized,
§fn contains(&self, other: Self) -> boolwhere
Self: Sized,
fn contains(&self, other: Self) -> boolwhere
Self: Sized,
§fn insert(&mut self, other: Self)where
Self: Sized,
fn insert(&mut self, other: Self)where
Self: Sized,
|
) of the bits in two flags values.§fn remove(&mut self, other: Self)where
Self: Sized,
fn remove(&mut self, other: Self)where
Self: Sized,
&!
). Read more§fn toggle(&mut self, other: Self)where
Self: Sized,
fn toggle(&mut self, other: Self)where
Self: Sized,
^
) of the bits in two flags values.§fn intersection(self, other: Self) -> Self
fn intersection(self, other: Self) -> Self
&
) of the bits in two flags values.§fn difference(self, other: Self) -> Self
fn difference(self, other: Self) -> Self
&!
). Read more§fn symmetric_difference(self, other: Self) -> Self
fn symmetric_difference(self, other: Self) -> Self
^
) of the bits in two flags values.§fn complement(self) -> Self
fn complement(self) -> Self
!
) of the bits in a flags value, truncating the result.§impl FromIterator<ProcessInfoFlags> for ProcessInfoFlags
impl FromIterator<ProcessInfoFlags> for ProcessInfoFlags
§fn from_iter<T>(iterator: T) -> ProcessInfoFlagswhere
T: IntoIterator<Item = ProcessInfoFlags>,
fn from_iter<T>(iterator: T) -> ProcessInfoFlagswhere
T: IntoIterator<Item = ProcessInfoFlags>,
The bitwise or (|
) of the bits in each flags value.
§impl Hash for ProcessInfoFlags
impl Hash for ProcessInfoFlags
§impl IntoIterator for ProcessInfoFlags
impl IntoIterator for ProcessInfoFlags
§type Item = ProcessInfoFlags
type Item = ProcessInfoFlags
§type IntoIter = Iter<ProcessInfoFlags>
type IntoIter = Iter<ProcessInfoFlags>
§fn into_iter(self) -> <ProcessInfoFlags as IntoIterator>::IntoIter
fn into_iter(self) -> <ProcessInfoFlags as IntoIterator>::IntoIter
§impl LowerHex for ProcessInfoFlags
impl LowerHex for ProcessInfoFlags
§impl Not for ProcessInfoFlags
impl Not for ProcessInfoFlags
§fn not(self) -> ProcessInfoFlags
fn not(self) -> ProcessInfoFlags
The bitwise negation (!
) of the bits in a flags value, truncating the result.
§type Output = ProcessInfoFlags
type Output = ProcessInfoFlags
!
operator.§impl Octal for ProcessInfoFlags
impl Octal for ProcessInfoFlags
§impl Ord for ProcessInfoFlags
impl Ord for ProcessInfoFlags
§fn cmp(&self, other: &ProcessInfoFlags) -> Ordering
fn cmp(&self, other: &ProcessInfoFlags) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
§impl PartialEq for ProcessInfoFlags
impl PartialEq for ProcessInfoFlags
§impl PartialOrd for ProcessInfoFlags
impl PartialOrd for ProcessInfoFlags
§impl Sub for ProcessInfoFlags
impl Sub for ProcessInfoFlags
§fn sub(self, other: ProcessInfoFlags) -> ProcessInfoFlags
fn sub(self, other: ProcessInfoFlags) -> ProcessInfoFlags
The intersection of a source flags value with the complement of a target flags value (&!
).
This method is not equivalent to self & !other
when other
has unknown bits set.
difference
won’t truncate other
, but the !
operator will.
§type Output = ProcessInfoFlags
type Output = ProcessInfoFlags
-
operator.§impl SubAssign for ProcessInfoFlags
impl SubAssign for ProcessInfoFlags
§fn sub_assign(&mut self, other: ProcessInfoFlags)
fn sub_assign(&mut self, other: ProcessInfoFlags)
The intersection of a source flags value with the complement of a target flags value (&!
).
This method is not equivalent to self & !other
when other
has unknown bits set.
difference
won’t truncate other
, but the !
operator will.
§impl UpperHex for ProcessInfoFlags
impl UpperHex for ProcessInfoFlags
impl Copy for ProcessInfoFlags
impl Eq for ProcessInfoFlags
impl StructuralPartialEq for ProcessInfoFlags
Auto Trait Implementations§
impl Freeze for ProcessInfoFlags
impl RefUnwindSafe for ProcessInfoFlags
impl Send for ProcessInfoFlags
impl Sync for ProcessInfoFlags
impl Unpin for ProcessInfoFlags
impl UnwindSafe for ProcessInfoFlags
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T, D> Encode<Ambiguous1, D> for Twhere
D: ResourceDialect,
impl<T, D> Encode<Ambiguous1, D> for Twhere
D: ResourceDialect,
§impl<T, D> Encode<Ambiguous2, D> for Twhere
D: ResourceDialect,
impl<T, D> Encode<Ambiguous2, D> for Twhere
D: ResourceDialect,
Source§impl<T> InstanceFromServiceTransport<T> for T
impl<T> InstanceFromServiceTransport<T> for T
Source§fn from_service_transport(handle: T) -> T
fn from_service_transport(handle: T) -> T
T
to Self