pub enum BytecodeImmediate {
Boolean(bool),
Int(i32),
Import(u32),
}Variants§
Trait Implementations§
Source§impl Clone for BytecodeImmediate
impl Clone for BytecodeImmediate
Source§fn clone(&self) -> BytecodeImmediate
fn clone(&self) -> BytecodeImmediate
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 BytecodeImmediate
Source§impl Debug for BytecodeImmediate
impl Debug for BytecodeImmediate
impl Eq for BytecodeImmediate
Source§impl Hash for BytecodeImmediate
impl Hash for BytecodeImmediate
Source§impl PartialEq for BytecodeImmediate
impl PartialEq for BytecodeImmediate
impl StructuralPartialEq for BytecodeImmediate
Auto Trait Implementations§
impl Freeze for BytecodeImmediate
impl RefUnwindSafe for BytecodeImmediate
impl Send for BytecodeImmediate
impl Sync for BytecodeImmediate
impl Unpin for BytecodeImmediate
impl UnsafeUnpin for BytecodeImmediate
impl UnwindSafe for BytecodeImmediate
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