#[repr(C)]pub struct BytecodeBlock {
pub startpc: i32,
pub finishpc: i32,
}Fields§
§startpc: i32‘start’ and ‘finish’ define an inclusive range of instructions which belong to the block
finishpc: i32Trait Implementations§
Source§impl Clone for BytecodeBlock
impl Clone for BytecodeBlock
Source§fn clone(&self) -> BytecodeBlock
fn clone(&self) -> BytecodeBlock
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 BytecodeBlock
Source§impl Debug for BytecodeBlock
impl Debug for BytecodeBlock
Source§impl Default for BytecodeBlock
impl Default for BytecodeBlock
impl Eq for BytecodeBlock
Source§impl Hash for BytecodeBlock
impl Hash for BytecodeBlock
Source§impl PartialEq for BytecodeBlock
impl PartialEq for BytecodeBlock
Source§fn eq(&self, other: &BytecodeBlock) -> bool
fn eq(&self, other: &BytecodeBlock) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for BytecodeBlock
Auto Trait Implementations§
impl Freeze for BytecodeBlock
impl RefUnwindSafe for BytecodeBlock
impl Send for BytecodeBlock
impl Sync for BytecodeBlock
impl Unpin for BytecodeBlock
impl UnsafeUnpin for BytecodeBlock
impl UnwindSafe for BytecodeBlock
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