pub struct VmPrimitive {
pub op: PrimitiveOp,
pub args: Vec<VmValue>,
}Fields§
§op: PrimitiveOp§args: Vec<VmValue>Trait Implementations§
Source§impl Clone for VmPrimitive
impl Clone for VmPrimitive
Source§fn clone(&self) -> VmPrimitive
fn clone(&self) -> VmPrimitive
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 VmPrimitive
impl Debug for VmPrimitive
Source§impl PartialEq for VmPrimitive
impl PartialEq for VmPrimitive
Source§fn eq(&self, other: &VmPrimitive) -> bool
fn eq(&self, other: &VmPrimitive) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for VmPrimitive
Auto Trait Implementations§
impl Freeze for VmPrimitive
impl RefUnwindSafe for VmPrimitive
impl !Send for VmPrimitive
impl !Sync for VmPrimitive
impl Unpin for VmPrimitive
impl UnsafeUnpin for VmPrimitive
impl UnwindSafe for VmPrimitive
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