pub struct IRBytecode(pub Vec<IRByte>);Expand description
Full Intermediate Bytecode Representation
Tuple Fields§
§0: Vec<IRByte>Trait Implementations§
Source§impl Clone for IRBytecode
impl Clone for IRBytecode
Source§fn clone(&self) -> IRBytecode
fn clone(&self) -> IRBytecode
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 IRBytecode
impl Debug for IRBytecode
Source§impl Ord for IRBytecode
impl Ord for IRBytecode
Source§fn cmp(&self, other: &IRBytecode) -> Ordering
fn cmp(&self, other: &IRBytecode) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for IRBytecode
impl PartialEq for IRBytecode
Source§fn eq(&self, other: &IRBytecode) -> bool
fn eq(&self, other: &IRBytecode) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for IRBytecode
impl PartialOrd for IRBytecode
impl Eq for IRBytecode
impl StructuralPartialEq for IRBytecode
Auto Trait Implementations§
impl Freeze for IRBytecode
impl RefUnwindSafe for IRBytecode
impl Send for IRBytecode
impl Sync for IRBytecode
impl Unpin for IRBytecode
impl UnsafeUnpin for IRBytecode
impl UnwindSafe for IRBytecode
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