pub enum VmEngineStructureValue {
Word(u32),
Text(String),
}Expand description
One engine-structure payload carried by a stack value.
Variants§
Word(u32)
One 32-bit opaque payload.
Text(String)
One textual payload used by some engine structures.
Implementations§
Trait Implementations§
Source§impl Clone for VmEngineStructureValue
impl Clone for VmEngineStructureValue
Source§fn clone(&self) -> VmEngineStructureValue
fn clone(&self) -> VmEngineStructureValue
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for VmEngineStructureValue
impl Debug for VmEngineStructureValue
Source§impl PartialEq for VmEngineStructureValue
impl PartialEq for VmEngineStructureValue
impl StructuralPartialEq for VmEngineStructureValue
Auto Trait Implementations§
impl Freeze for VmEngineStructureValue
impl RefUnwindSafe for VmEngineStructureValue
impl Send for VmEngineStructureValue
impl Sync for VmEngineStructureValue
impl Unpin for VmEngineStructureValue
impl UnsafeUnpin for VmEngineStructureValue
impl UnwindSafe for VmEngineStructureValue
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more