pub struct DecodedIterInsn {
pub decoded_insn: DecodedInsn,
pub index_in_buffer: usize,
}Fields§
§decoded_insn: DecodedInsnthe actual decoded instruction.
index_in_buffer: usizethe index of the first byte of this instruction in the decoded buffer.
Trait Implementations§
Source§impl Clone for DecodedIterInsn
impl Clone for DecodedIterInsn
Source§fn clone(&self) -> DecodedIterInsn
fn clone(&self) -> DecodedIterInsn
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 DecodedIterInsn
impl Debug for DecodedIterInsn
impl Eq for DecodedIterInsn
Source§impl Hash for DecodedIterInsn
impl Hash for DecodedIterInsn
Source§impl PartialEq for DecodedIterInsn
impl PartialEq for DecodedIterInsn
Source§fn eq(&self, other: &DecodedIterInsn) -> bool
fn eq(&self, other: &DecodedIterInsn) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DecodedIterInsn
Auto Trait Implementations§
impl Freeze for DecodedIterInsn
impl RefUnwindSafe for DecodedIterInsn
impl Send for DecodedIterInsn
impl Sync for DecodedIterInsn
impl Unpin for DecodedIterInsn
impl UnsafeUnpin for DecodedIterInsn
impl UnwindSafe for DecodedIterInsn
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