pub struct BytecodeTypedLocal {
pub ty: u8,
pub register: Register,
pub start_pc: u32,
pub end_pc: u32,
}Fields§
§ty: u8§register: Register§start_pc: u32§end_pc: u32Trait Implementations§
Source§impl Clone for BytecodeTypedLocal
impl Clone for BytecodeTypedLocal
Source§fn clone(&self) -> BytecodeTypedLocal
fn clone(&self) -> BytecodeTypedLocal
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 BytecodeTypedLocal
Source§impl Debug for BytecodeTypedLocal
impl Debug for BytecodeTypedLocal
impl Eq for BytecodeTypedLocal
Source§impl PartialEq for BytecodeTypedLocal
impl PartialEq for BytecodeTypedLocal
impl StructuralPartialEq for BytecodeTypedLocal
Auto Trait Implementations§
impl Freeze for BytecodeTypedLocal
impl RefUnwindSafe for BytecodeTypedLocal
impl Send for BytecodeTypedLocal
impl Sync for BytecodeTypedLocal
impl Unpin for BytecodeTypedLocal
impl UnsafeUnpin for BytecodeTypedLocal
impl UnwindSafe for BytecodeTypedLocal
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