#[repr(u8)]pub enum BcVmConstKind {
Nil = 0,
Boolean = 1,
Number = 2,
Vector = 3,
String = 4,
Import = 5,
Table = 6,
Closure = 7,
Integer = 8,
}Variants§
Trait Implementations§
Source§impl Clone for BcVmConstKind
impl Clone for BcVmConstKind
Source§fn clone(&self) -> BcVmConstKind
fn clone(&self) -> BcVmConstKind
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 moreimpl Copy for BcVmConstKind
Source§impl Debug for BcVmConstKind
impl Debug for BcVmConstKind
impl Eq for BcVmConstKind
Source§impl Hash for BcVmConstKind
impl Hash for BcVmConstKind
Source§impl PartialEq for BcVmConstKind
impl PartialEq for BcVmConstKind
Source§fn eq(&self, other: &BcVmConstKind) -> bool
fn eq(&self, other: &BcVmConstKind) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for BcVmConstKind
Auto Trait Implementations§
impl Freeze for BcVmConstKind
impl RefUnwindSafe for BcVmConstKind
impl Send for BcVmConstKind
impl Sync for BcVmConstKind
impl Unpin for BcVmConstKind
impl UnsafeUnpin for BcVmConstKind
impl UnwindSafe for BcVmConstKind
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