Enum rustc_mir::interpret::memory::MemoryKind[][src]

pub enum MemoryKind<T> {
    Stack,
    Machine(T),
}
🔬 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

🔬 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?

Error if deallocated except during a stack pop

🔬 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?

Additional memory kinds a machine wishes to distinguish from the builtin ones

Trait Implementations

impl<T: Debug> Debug for MemoryKind<T>
[src]

Formats the value using the given formatter. Read more

impl<T: PartialEq> PartialEq for MemoryKind<T>
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl<T: Copy> Copy for MemoryKind<T>
[src]

impl<T: Clone> Clone for MemoryKind<T>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl<T> Send for MemoryKind<T> where
    T: Send

impl<T> Sync for MemoryKind<T> where
    T: Sync