Enum rustc::mir::ValidationOp
[−]
[src]
pub enum ValidationOp {
Acquire,
Release,
Suspend(Scope),
}🔬 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?
The ValidationOp describes what happens with each of the operands of a
Validate statement.
Variants
Acquire🔬 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?
Recursively traverse the place following the type and validate that all type invariants are maintained. Furthermore, acquire exclusive/read-only access to the memory reachable from the place.
Release🔬 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?
Recursive traverse the mutable part of the type and relinquish all exclusive access.
Suspend(Scope)🔬 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?
Recursive traverse the mutable part of the type and relinquish all exclusive access until the given region ends. Then, access will be recovered.
Trait Implementations
impl<'tcx> HashStable<StableHashingContext<'tcx>> for ValidationOp[src]
fn hash_stable<W: StableHasherResult>(
&self,
__ctx: &mut StableHashingContext<'tcx>,
__hasher: &mut StableHasher<W>
)[src]
&self,
__ctx: &mut StableHashingContext<'tcx>,
__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 ValidationOp[src]
impl Clone for ValidationOp[src]
fn clone(&self) -> ValidationOp[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl Encodable for ValidationOp[src]
fn encode<__S: Encoder>(&self, __arg_0: &mut __S) -> Result<(), __S::Error>[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?
impl Decodable for ValidationOp[src]
fn decode<__D: Decoder>(__arg_0: &mut __D) -> Result<ValidationOp, __D::Error>[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?
impl PartialEq for ValidationOp[src]
fn eq(&self, __arg_0: &ValidationOp) -> bool[src]
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &ValidationOp) -> bool[src]
This method tests for !=.