Struct rustc::mir::interpret::UndefMask [−][src]
🔬 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
blocks: Vec<u64>
🔬 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?
len: Size
🔬 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 UndefMask
[src]
impl UndefMask
pub fn new(size: Size) -> Self
[src]
pub fn new(size: Size) -> Self
🔬 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?
pub fn is_range_defined(&self, start: Size, end: Size) -> bool
[src]
pub fn is_range_defined(&self, start: Size, end: Size) -> 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?
Check whether the range start..end
(end-exclusive) is entirely defined.
pub fn set_range(&mut self, start: Size, end: Size, new_state: bool)
[src]
pub fn set_range(&mut self, start: Size, end: Size, new_state: 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?
pub fn set_range_inbounds(&mut self, start: Size, end: Size, new_state: bool)
[src]
pub fn set_range_inbounds(&mut self, start: Size, end: Size, new_state: 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?
pub fn get(&self, i: Size) -> bool
[src]
pub fn get(&self, i: Size) -> 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?
pub fn set(&mut self, i: Size, new_state: bool)
[src]
pub fn set(&mut self, i: Size, new_state: 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?
pub fn grow(&mut self, amount: Size, new_state: bool)
[src]
pub fn grow(&mut self, amount: Size, new_state: 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?
Trait Implementations
impl Clone for UndefMask
[src]
impl Clone for UndefMask
fn clone(&self) -> UndefMask
[src]
fn clone(&self) -> UndefMask
Returns 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 Debug for UndefMask
[src]
impl Debug for UndefMask
fn fmt(&self, f: &mut Formatter) -> Result
[src]
fn fmt(&self, f: &mut Formatter) -> Result
Formats the value using the given formatter. Read more
impl Eq for UndefMask
[src]
impl Eq for UndefMask
fn assert_receiver_is_total_eq(&self)
[src]
fn assert_receiver_is_total_eq(&self)
impl PartialEq for UndefMask
[src]
impl PartialEq for UndefMask
fn eq(&self, other: &UndefMask) -> bool
[src]
fn eq(&self, other: &UndefMask) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, other: &UndefMask) -> bool
[src]
fn ne(&self, other: &UndefMask) -> bool
This method tests for !=
.
impl PartialOrd for UndefMask
[src]
impl PartialOrd for UndefMask
fn partial_cmp(&self, other: &UndefMask) -> Option<Ordering>
[src]
fn partial_cmp(&self, other: &UndefMask) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
fn lt(&self, other: &UndefMask) -> bool
[src]
fn lt(&self, other: &UndefMask) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
fn le(&self, other: &UndefMask) -> bool
[src]
fn le(&self, other: &UndefMask) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
fn gt(&self, other: &UndefMask) -> bool
[src]
fn gt(&self, other: &UndefMask) -> bool
This method tests greater than (for self
and other
) and is used by the >
operator. Read more
fn ge(&self, other: &UndefMask) -> bool
[src]
fn ge(&self, other: &UndefMask) -> bool
This method tests greater than or equal to (for self
and other
) and is used by the >=
operator. Read more
impl Ord for UndefMask
[src]
impl Ord for UndefMask
fn cmp(&self, other: &UndefMask) -> Ordering
[src]
fn cmp(&self, other: &UndefMask) -> Ordering
This method returns an Ordering
between self
and other
. Read more
fn max(self, other: Self) -> Self
1.21.0[src]
fn max(self, other: Self) -> Self
Compares and returns the maximum of two values. Read more
fn min(self, other: Self) -> Self
1.21.0[src]
fn min(self, other: Self) -> Self
Compares and returns the minimum of two values. Read more
impl Hash for UndefMask
[src]
impl Hash for UndefMask
fn hash<__H: Hasher>(&self, state: &mut __H)
[src]
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 Encodable for UndefMask
[src]
impl Encodable for UndefMask
fn encode<__S: Encoder>(&self, s: &mut __S) -> Result<(), __S::Error>
[src]
fn encode<__S: Encoder>(&self, s: &mut __S) -> Result<(), __S::Error>
🔬 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 Decodable for UndefMask
[src]
impl Decodable for UndefMask
fn decode<__D: Decoder>(d: &mut __D) -> Result<UndefMask, __D::Error>
[src]
fn decode<__D: Decoder>(d: &mut __D) -> Result<UndefMask, __D::Error>
🔬 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<'a, 'tcx> HashStable<StableHashingContext<'a>> for UndefMask
[src]
impl<'a, 'tcx> HashStable<StableHashingContext<'a>> for UndefMask
fn hash_stable<W: StableHasherResult>(
&self,
__ctx: &mut StableHashingContext<'a>,
__hasher: &mut StableHasher<W>
)
[src]
fn hash_stable<W: StableHasherResult>(
&self,
__ctx: &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?