Struct rustc::ty::AdtFlags [−]
pub struct AdtFlags {
bits: u32,
}🔬 This is a nightly-only experimental API. (rustc_private)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml instead?
Fields
bits: u32
🔬 This is a nightly-only experimental API. (rustc_private)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml instead?
Methods
impl AdtFlags
impl AdtFlagspub const NO_ADT_FLAGS: AdtFlags
🔬 This is a nightly-only experimental API. (rustc_private)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml instead?
NO_ADT_FLAGS: AdtFlags = AdtFlags{bits: 0,}
pub const IS_ENUM: AdtFlags
🔬 This is a nightly-only experimental API. (rustc_private)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml instead?
IS_ENUM: AdtFlags = AdtFlags{bits: 1 << 0,}
pub const IS_PHANTOM_DATA: AdtFlags
🔬 This is a nightly-only experimental API. (rustc_private)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml instead?
IS_PHANTOM_DATA: AdtFlags = AdtFlags{bits: 1 << 1,}
pub const IS_FUNDAMENTAL: AdtFlags
🔬 This is a nightly-only experimental API. (rustc_private)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml instead?
IS_FUNDAMENTAL: AdtFlags = AdtFlags{bits: 1 << 2,}
pub const IS_UNION: AdtFlags
🔬 This is a nightly-only experimental API. (rustc_private)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml instead?
IS_UNION: AdtFlags = AdtFlags{bits: 1 << 3,}
pub const IS_BOX: AdtFlags
🔬 This is a nightly-only experimental API. (rustc_private)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml instead?
IS_BOX: AdtFlags = AdtFlags{bits: 1 << 4,}
pub const IS_NON_EXHAUSTIVE: AdtFlags
🔬 This is a nightly-only experimental API. (rustc_private)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml instead?
IS_NON_EXHAUSTIVE: AdtFlags = AdtFlags{bits: 1 << 5,}
Indicates whether this abstract data type will be expanded on in future (new fields/variants) and as such, whether downstream crates must match exhaustively on the fields/variants of this data type.
See RFC 2008 (https://github.com/rust-lang/rfcs/pull/2008).
pub fn empty() -> AdtFlags
pub fn empty() -> AdtFlags🔬 This is a nightly-only experimental API. (rustc_private)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml instead?
Returns an empty set of flags.
pub fn all() -> AdtFlags
pub fn all() -> AdtFlags🔬 This is a nightly-only experimental API. (rustc_private)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml instead?
Returns the set containing all flags.
pub fn bits(&self) -> u32
pub fn bits(&self) -> u32🔬 This is a nightly-only experimental API. (rustc_private)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml instead?
Returns the raw value of the flags currently stored.
pub fn from_bits(bits: u32) -> Option<AdtFlags>
pub fn from_bits(bits: u32) -> Option<AdtFlags>🔬 This is a nightly-only experimental API. (rustc_private)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml instead?
Convert from underlying bit representation, unless that representation contains bits that do not correspond to a flag.
pub fn from_bits_truncate(bits: u32) -> AdtFlags
pub fn from_bits_truncate(bits: u32) -> AdtFlags🔬 This is a nightly-only experimental API. (rustc_private)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml instead?
Convert from underlying bit representation, dropping any bits that do not correspond to flags.
pub fn is_empty(&self) -> bool
pub fn is_empty(&self) -> bool🔬 This is a nightly-only experimental API. (rustc_private)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml instead?
Returns true if no flags are currently stored.
pub fn is_all(&self) -> bool
pub fn is_all(&self) -> bool🔬 This is a nightly-only experimental API. (rustc_private)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml instead?
Returns true if all flags are currently set.
pub fn intersects(&self, other: AdtFlags) -> bool
pub fn intersects(&self, other: AdtFlags) -> bool🔬 This is a nightly-only experimental API. (rustc_private)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml instead?
Returns true if there are flags common to both self and other.
pub fn contains(&self, other: AdtFlags) -> bool
pub fn contains(&self, other: AdtFlags) -> bool🔬 This is a nightly-only experimental API. (rustc_private)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml instead?
Returns true all of the flags in other are contained within self.
pub fn insert(&mut self, other: AdtFlags)
pub fn insert(&mut self, other: AdtFlags)🔬 This is a nightly-only experimental API. (rustc_private)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml instead?
Inserts the specified flags in-place.
pub fn remove(&mut self, other: AdtFlags)
pub fn remove(&mut self, other: AdtFlags)🔬 This is a nightly-only experimental API. (rustc_private)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml instead?
Removes the specified flags in-place.
pub fn toggle(&mut self, other: AdtFlags)
pub fn toggle(&mut self, other: AdtFlags)🔬 This is a nightly-only experimental API. (rustc_private)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml instead?
Toggles the specified flags in-place.
pub fn set(&mut self, other: AdtFlags, value: bool)
pub fn set(&mut self, other: AdtFlags, value: bool)🔬 This is a nightly-only experimental API. (rustc_private)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml instead?
Inserts or removes the specified flags depending on the passed value.
Trait Implementations
impl<'a> HashStable<StableHashingContext<'a>> for AdtFlags[src]
impl<'a> HashStable<StableHashingContext<'a>> for AdtFlagsfn hash_stable<W: StableHasherResult>(
&self,
_: &mut StableHashingContext<'a>,
hasher: &mut StableHasher<W>
)[src]
fn hash_stable<W: StableHasherResult>(
&self,
_: &mut StableHashingContext<'a>,
hasher: &mut StableHasher<W>
)🔬 This is a nightly-only experimental API. (rustc_private)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml instead?
impl Copy for AdtFlags
impl Copy for AdtFlagsimpl PartialEq for AdtFlags
impl PartialEq for AdtFlagsfn eq(&self, other: &AdtFlags) -> bool
fn eq(&self, other: &AdtFlags) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &AdtFlags) -> bool
fn ne(&self, other: &AdtFlags) -> boolThis method tests for !=.
impl Eq for AdtFlags
impl Eq for AdtFlagsfn assert_receiver_is_total_eq(&self)
fn assert_receiver_is_total_eq(&self)impl Clone for AdtFlags
impl Clone for AdtFlagsfn clone(&self) -> AdtFlags
fn clone(&self) -> AdtFlagsReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)Performs copy-assignment from source. Read more
impl PartialOrd for AdtFlags
impl PartialOrd for AdtFlagsfn partial_cmp(&self, other: &AdtFlags) -> Option<Ordering>
fn partial_cmp(&self, other: &AdtFlags) -> Option<Ordering>This method returns an ordering between self and other values if one exists. Read more
fn lt(&self, other: &AdtFlags) -> bool
fn lt(&self, other: &AdtFlags) -> boolThis method tests less than (for self and other) and is used by the < operator. Read more
fn le(&self, other: &AdtFlags) -> bool
fn le(&self, other: &AdtFlags) -> boolThis method tests less than or equal to (for self and other) and is used by the <= operator. Read more
fn gt(&self, other: &AdtFlags) -> bool
fn gt(&self, other: &AdtFlags) -> boolThis method tests greater than (for self and other) and is used by the > operator. Read more
fn ge(&self, other: &AdtFlags) -> bool
fn ge(&self, other: &AdtFlags) -> boolThis method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
impl Ord for AdtFlags
impl Ord for AdtFlagsfn cmp(&self, other: &AdtFlags) -> Ordering
fn cmp(&self, other: &AdtFlags) -> OrderingThis method returns an Ordering between self and other. Read more
fn max(self, other: Self) -> Self1.21.0[src]
fn max(self, other: Self) -> SelfCompares and returns the maximum of two values. Read more
fn min(self, other: Self) -> Self1.21.0[src]
fn min(self, other: Self) -> SelfCompares and returns the minimum of two values. Read more
impl Hash for AdtFlags
impl Hash for AdtFlagsfn hash<__H: Hasher>(&self, state: &mut __H)
fn hash<__H: Hasher>(&self, state: &mut __H)Feeds this value into the given [Hasher]. Read more
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, 1.3.0[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, Feeds a slice of this type into the given [Hasher]. Read more
impl Debug for AdtFlags
impl Debug for AdtFlagsimpl Binary for AdtFlags
impl Binary for AdtFlagsimpl Octal for AdtFlags
impl Octal for AdtFlagsimpl LowerHex for AdtFlags
impl LowerHex for AdtFlagsimpl UpperHex for AdtFlags
impl UpperHex for AdtFlagsimpl BitOr for AdtFlags
impl BitOr for AdtFlagstype Output = AdtFlags
The resulting type after applying the | operator.
fn bitor(self, other: AdtFlags) -> AdtFlags
fn bitor(self, other: AdtFlags) -> AdtFlagsReturns the union of the two sets of flags.
impl BitOrAssign for AdtFlags
impl BitOrAssign for AdtFlagsfn bitor_assign(&mut self, other: AdtFlags)
fn bitor_assign(&mut self, other: AdtFlags)Adds the set of flags.
impl BitXor for AdtFlags
impl BitXor for AdtFlagstype Output = AdtFlags
The resulting type after applying the ^ operator.
fn bitxor(self, other: AdtFlags) -> AdtFlags
fn bitxor(self, other: AdtFlags) -> AdtFlagsReturns the left flags, but with all the right flags toggled.
impl BitXorAssign for AdtFlags
impl BitXorAssign for AdtFlagsfn bitxor_assign(&mut self, other: AdtFlags)
fn bitxor_assign(&mut self, other: AdtFlags)Toggles the set of flags.
impl BitAnd for AdtFlags
impl BitAnd for AdtFlagstype Output = AdtFlags
The resulting type after applying the & operator.
fn bitand(self, other: AdtFlags) -> AdtFlags
fn bitand(self, other: AdtFlags) -> AdtFlagsReturns the intersection between the two sets of flags.
impl BitAndAssign for AdtFlags
impl BitAndAssign for AdtFlagsfn bitand_assign(&mut self, other: AdtFlags)
fn bitand_assign(&mut self, other: AdtFlags)Disables all flags disabled in the set.
impl Sub for AdtFlags
impl Sub for AdtFlagstype Output = AdtFlags
The resulting type after applying the - operator.
fn sub(self, other: AdtFlags) -> AdtFlags
fn sub(self, other: AdtFlags) -> AdtFlagsReturns the set difference of the two sets of flags.
impl SubAssign for AdtFlags
impl SubAssign for AdtFlagsfn sub_assign(&mut self, other: AdtFlags)
fn sub_assign(&mut self, other: AdtFlags)Disables all flags enabled in the set.
impl Not for AdtFlags
impl Not for AdtFlagstype Output = AdtFlags
The resulting type after applying the ! operator.
fn not(self) -> AdtFlags
fn not(self) -> AdtFlagsReturns the complement of this set of flags.
impl Extend<AdtFlags> for AdtFlags
impl Extend<AdtFlags> for AdtFlagsfn extend<T: IntoIterator<Item = AdtFlags>>(&mut self, iterator: T)
fn extend<T: IntoIterator<Item = AdtFlags>>(&mut self, iterator: T)Extends a collection with the contents of an iterator. Read more
impl FromIterator<AdtFlags> for AdtFlags
impl FromIterator<AdtFlags> for AdtFlagsfn from_iter<T: IntoIterator<Item = AdtFlags>>(iterator: T) -> AdtFlags
fn from_iter<T: IntoIterator<Item = AdtFlags>>(iterator: T) -> AdtFlagsCreates a value from an iterator. Read more