Struct rustpython_vm::bytecode::MakeFunctionFlags
source · pub struct MakeFunctionFlags(_);
Implementations§
source§impl MakeFunctionFlags
impl MakeFunctionFlags
pub const CLOSURE: MakeFunctionFlags = _
pub const ANNOTATIONS: MakeFunctionFlags = _
pub const KW_ONLY_DEFAULTS: MakeFunctionFlags = _
pub const DEFAULTS: MakeFunctionFlags = _
source§impl MakeFunctionFlags
impl MakeFunctionFlags
sourcepub const fn empty() -> MakeFunctionFlags
pub const fn empty() -> MakeFunctionFlags
Get a flags value with all bits unset.
sourcepub const fn all() -> MakeFunctionFlags
pub const fn all() -> MakeFunctionFlags
Get a flags value with all known bits set.
sourcepub const fn bits(&self) -> u8
pub const fn bits(&self) -> u8
Get the underlying bits value.
The returned value is exactly the bits set in this flags value.
sourcepub const fn from_bits(bits: u8) -> Option<MakeFunctionFlags>
pub const fn from_bits(bits: u8) -> Option<MakeFunctionFlags>
Convert from a bits value.
This method will return None
if any unknown bits are set.
sourcepub const fn from_bits_truncate(bits: u8) -> MakeFunctionFlags
pub const fn from_bits_truncate(bits: u8) -> MakeFunctionFlags
Convert from a bits value, unsetting any unknown bits.
sourcepub const fn from_bits_retain(bits: u8) -> MakeFunctionFlags
pub const fn from_bits_retain(bits: u8) -> MakeFunctionFlags
Convert from a bits value exactly.
sourcepub fn from_name(name: &str) -> Option<MakeFunctionFlags>
pub fn from_name(name: &str) -> Option<MakeFunctionFlags>
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.
sourcepub const fn intersects(&self, other: MakeFunctionFlags) -> bool
pub const fn intersects(&self, other: MakeFunctionFlags) -> bool
Whether any set bits in a source flags value are also set in a target flags value.
sourcepub const fn contains(&self, other: MakeFunctionFlags) -> bool
pub const fn contains(&self, other: MakeFunctionFlags) -> bool
Whether all set bits in a source flags value are also set in a target flags value.
sourcepub fn insert(&mut self, other: MakeFunctionFlags)
pub fn insert(&mut self, other: MakeFunctionFlags)
The bitwise or (|
) of the bits in two flags values.
sourcepub fn remove(&mut self, other: MakeFunctionFlags)
pub fn remove(&mut self, other: MakeFunctionFlags)
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.
sourcepub fn toggle(&mut self, other: MakeFunctionFlags)
pub fn toggle(&mut self, other: MakeFunctionFlags)
The bitwise exclusive-or (^
) of the bits in two flags values.
sourcepub fn set(&mut self, other: MakeFunctionFlags, value: bool)
pub fn set(&mut self, other: MakeFunctionFlags, value: bool)
Call insert
when value
is true
or remove
when value
is false
.
sourcepub const fn intersection(self, other: MakeFunctionFlags) -> MakeFunctionFlags
pub const fn intersection(self, other: MakeFunctionFlags) -> MakeFunctionFlags
The bitwise and (&
) of the bits in two flags values.
sourcepub const fn union(self, other: MakeFunctionFlags) -> MakeFunctionFlags
pub const fn union(self, other: MakeFunctionFlags) -> MakeFunctionFlags
The bitwise or (|
) of the bits in two flags values.
sourcepub const fn difference(self, other: MakeFunctionFlags) -> MakeFunctionFlags
pub const fn difference(self, other: MakeFunctionFlags) -> MakeFunctionFlags
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.
sourcepub const fn symmetric_difference(
self,
other: MakeFunctionFlags
) -> MakeFunctionFlags
pub const fn symmetric_difference( self, other: MakeFunctionFlags ) -> MakeFunctionFlags
The bitwise exclusive-or (^
) of the bits in two flags values.
sourcepub const fn complement(self) -> MakeFunctionFlags
pub const fn complement(self) -> MakeFunctionFlags
The bitwise negation (!
) of the bits in a flags value, truncating the result.
source§impl MakeFunctionFlags
impl MakeFunctionFlags
sourcepub const fn iter(&self) -> Iter<MakeFunctionFlags>
pub const fn iter(&self) -> Iter<MakeFunctionFlags>
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.
sourcepub const fn iter_names(&self) -> IterNames<MakeFunctionFlags>
pub const fn iter_names(&self) -> IterNames<MakeFunctionFlags>
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§
source§impl Binary for MakeFunctionFlags
impl Binary for MakeFunctionFlags
source§impl BitAnd<MakeFunctionFlags> for MakeFunctionFlags
impl BitAnd<MakeFunctionFlags> for MakeFunctionFlags
source§fn bitand(self, other: MakeFunctionFlags) -> MakeFunctionFlags
fn bitand(self, other: MakeFunctionFlags) -> MakeFunctionFlags
The bitwise and (&
) of the bits in two flags values.
§type Output = MakeFunctionFlags
type Output = MakeFunctionFlags
&
operator.source§impl BitAndAssign<MakeFunctionFlags> for MakeFunctionFlags
impl BitAndAssign<MakeFunctionFlags> for MakeFunctionFlags
source§fn bitand_assign(&mut self, other: MakeFunctionFlags)
fn bitand_assign(&mut self, other: MakeFunctionFlags)
The bitwise and (&
) of the bits in two flags values.
source§impl BitOr<MakeFunctionFlags> for MakeFunctionFlags
impl BitOr<MakeFunctionFlags> for MakeFunctionFlags
source§fn bitor(self, other: MakeFunctionFlags) -> MakeFunctionFlags
fn bitor(self, other: MakeFunctionFlags) -> MakeFunctionFlags
The bitwise or (|
) of the bits in two flags values.
§type Output = MakeFunctionFlags
type Output = MakeFunctionFlags
|
operator.source§impl BitOrAssign<MakeFunctionFlags> for MakeFunctionFlags
impl BitOrAssign<MakeFunctionFlags> for MakeFunctionFlags
source§fn bitor_assign(&mut self, other: MakeFunctionFlags)
fn bitor_assign(&mut self, other: MakeFunctionFlags)
The bitwise or (|
) of the bits in two flags values.
source§impl BitXor<MakeFunctionFlags> for MakeFunctionFlags
impl BitXor<MakeFunctionFlags> for MakeFunctionFlags
source§fn bitxor(self, other: MakeFunctionFlags) -> MakeFunctionFlags
fn bitxor(self, other: MakeFunctionFlags) -> MakeFunctionFlags
The bitwise exclusive-or (^
) of the bits in two flags values.
§type Output = MakeFunctionFlags
type Output = MakeFunctionFlags
^
operator.source§impl BitXorAssign<MakeFunctionFlags> for MakeFunctionFlags
impl BitXorAssign<MakeFunctionFlags> for MakeFunctionFlags
source§fn bitxor_assign(&mut self, other: MakeFunctionFlags)
fn bitxor_assign(&mut self, other: MakeFunctionFlags)
The bitwise exclusive-or (^
) of the bits in two flags values.
source§impl Clone for MakeFunctionFlags
impl Clone for MakeFunctionFlags
source§fn clone(&self) -> MakeFunctionFlags
fn clone(&self) -> MakeFunctionFlags
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for MakeFunctionFlags
impl Debug for MakeFunctionFlags
source§impl Extend<MakeFunctionFlags> for MakeFunctionFlags
impl Extend<MakeFunctionFlags> for MakeFunctionFlags
source§fn extend<T>(&mut self, iterator: T)where
T: IntoIterator<Item = MakeFunctionFlags>,
fn extend<T>(&mut self, iterator: T)where T: IntoIterator<Item = MakeFunctionFlags>,
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
)source§impl Flags for MakeFunctionFlags
impl Flags for MakeFunctionFlags
source§const FLAGS: &'static [Flag<MakeFunctionFlags>] = _
const FLAGS: &'static [Flag<MakeFunctionFlags>] = _
source§fn from_bits_retain(bits: u8) -> MakeFunctionFlags
fn from_bits_retain(bits: u8) -> MakeFunctionFlags
source§fn from_bits_truncate(bits: Self::Bits) -> Self
fn from_bits_truncate(bits: Self::Bits) -> Self
source§fn from_name(name: &str) -> Option<Self>
fn from_name(name: &str) -> Option<Self>
source§fn iter_names(&self) -> IterNames<Self>
fn iter_names(&self) -> IterNames<Self>
source§fn intersects(&self, other: Self) -> boolwhere
Self: Sized,
fn intersects(&self, other: Self) -> boolwhere Self: Sized,
source§fn contains(&self, other: Self) -> boolwhere
Self: Sized,
fn contains(&self, other: Self) -> boolwhere Self: Sized,
source§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.source§fn remove(&mut self, other: Self)where
Self: Sized,
fn remove(&mut self, other: Self)where Self: Sized,
&!
). Read moresource§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.source§fn intersection(self, other: Self) -> Self
fn intersection(self, other: Self) -> Self
&
) of the bits in two flags values.source§fn difference(self, other: Self) -> Self
fn difference(self, other: Self) -> Self
&!
). Read moresource§fn symmetric_difference(self, other: Self) -> Self
fn symmetric_difference(self, other: Self) -> Self
^
) of the bits in two flags values.source§fn complement(self) -> Self
fn complement(self) -> Self
!
) of the bits in a flags value, truncating the result.source§impl FromIterator<MakeFunctionFlags> for MakeFunctionFlags
impl FromIterator<MakeFunctionFlags> for MakeFunctionFlags
source§fn from_iter<T>(iterator: T) -> MakeFunctionFlagswhere
T: IntoIterator<Item = MakeFunctionFlags>,
fn from_iter<T>(iterator: T) -> MakeFunctionFlagswhere T: IntoIterator<Item = MakeFunctionFlags>,
The bitwise or (|
) of the bits in each flags value.
source§impl IntoIterator for MakeFunctionFlags
impl IntoIterator for MakeFunctionFlags
§type Item = MakeFunctionFlags
type Item = MakeFunctionFlags
§type IntoIter = Iter<MakeFunctionFlags>
type IntoIter = Iter<MakeFunctionFlags>
source§fn into_iter(self) -> <MakeFunctionFlags as IntoIterator>::IntoIter
fn into_iter(self) -> <MakeFunctionFlags as IntoIterator>::IntoIter
source§impl LowerHex for MakeFunctionFlags
impl LowerHex for MakeFunctionFlags
source§impl Not for MakeFunctionFlags
impl Not for MakeFunctionFlags
source§fn not(self) -> MakeFunctionFlags
fn not(self) -> MakeFunctionFlags
The bitwise negation (!
) of the bits in a flags value, truncating the result.
§type Output = MakeFunctionFlags
type Output = MakeFunctionFlags
!
operator.source§impl Octal for MakeFunctionFlags
impl Octal for MakeFunctionFlags
source§impl OpArgType for MakeFunctionFlags
impl OpArgType for MakeFunctionFlags
fn from_op_arg(x: u32) -> Option<MakeFunctionFlags>
fn to_op_arg(self) -> u32
source§impl PartialEq<MakeFunctionFlags> for MakeFunctionFlags
impl PartialEq<MakeFunctionFlags> for MakeFunctionFlags
source§fn eq(&self, other: &MakeFunctionFlags) -> bool
fn eq(&self, other: &MakeFunctionFlags) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl Sub<MakeFunctionFlags> for MakeFunctionFlags
impl Sub<MakeFunctionFlags> for MakeFunctionFlags
source§fn sub(self, other: MakeFunctionFlags) -> MakeFunctionFlags
fn sub(self, other: MakeFunctionFlags) -> MakeFunctionFlags
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 = MakeFunctionFlags
type Output = MakeFunctionFlags
-
operator.source§impl SubAssign<MakeFunctionFlags> for MakeFunctionFlags
impl SubAssign<MakeFunctionFlags> for MakeFunctionFlags
source§fn sub_assign(&mut self, other: MakeFunctionFlags)
fn sub_assign(&mut self, other: MakeFunctionFlags)
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.