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 StackPopCleanup
fn clone(&self) -> StackPopCleanup
[src]
fn clone(&self) -> StackPopCleanup
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 StackPopCleanup
[src]
impl Debug for StackPopCleanup
fn fmt(&self, __arg_0: &mut Formatter) -> Result
[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result
Formats the value using the given formatter. Read more
impl Eq for StackPopCleanup
[src]
impl Eq for StackPopCleanup
impl PartialEq for StackPopCleanup
[src]
impl PartialEq for StackPopCleanup
fn eq(&self, __arg_0: &StackPopCleanup) -> bool
[src]
fn eq(&self, __arg_0: &StackPopCleanup) -> bool
This 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) -> bool
This method tests for !=
.
impl Hash for StackPopCleanup
[src]
impl Hash for StackPopCleanup
Auto Trait Implementations
impl Send for StackPopCleanup
impl Send for StackPopCleanup
impl Sync for StackPopCleanup
impl Sync for StackPopCleanup