Enum rustc_mir::interpret::StackPopCleanup
[−]
[src]
pub enum StackPopCleanup {
MarkStatic(Mutability),
Goto(BasicBlock),
None,
}🔬 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?
Variants
MarkStatic(Mutability)🔬 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 stackframe existed to compute the initial value of a static/constant, make sure it
isn't modifyable afterwards in case of constants.
In case of static mut, mark the memory to ensure it's never marked as immutable through
references or deallocated
Goto(BasicBlock)🔬 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?
A regular stackframe added due to a function call will need to get forwarded to the next block
None🔬 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 main function and diverging functions have nowhere to return to
Trait Implementations
impl Clone for StackPopCleanup[src]
impl Clone for StackPopCleanupfn clone(&self) -> StackPopCleanup[src]
fn clone(&self) -> StackPopCleanupReturns 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 StackPopCleanup[src]
impl Debug for StackPopCleanupfn fmt(&self, __arg_0: &mut Formatter) -> Result[src]
fn fmt(&self, __arg_0: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl Eq for StackPopCleanup[src]
impl Eq for StackPopCleanupimpl PartialEq for StackPopCleanup[src]
impl PartialEq for StackPopCleanupfn eq(&self, __arg_0: &StackPopCleanup) -> bool[src]
fn eq(&self, __arg_0: &StackPopCleanup) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &StackPopCleanup) -> bool[src]
fn ne(&self, __arg_0: &StackPopCleanup) -> boolThis method tests for !=.
impl Hash for StackPopCleanup[src]
impl Hash for StackPopCleanupAuto Trait Implementations
impl Send for StackPopCleanup
impl Send for StackPopCleanupimpl Sync for StackPopCleanup
impl Sync for StackPopCleanup