pub struct DecodedIterInsn {
pub decoded_insn: DecodedInsn,
pub index_in_buffer: usize,
}
Fields§
§decoded_insn: DecodedInsn
the actual decoded instruction.
index_in_buffer: usize
the 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 · 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
Source§impl Hash for DecodedIterInsn
impl Hash for DecodedIterInsn
Source§impl PartialEq for DecodedIterInsn
impl PartialEq for DecodedIterInsn
impl Eq for DecodedIterInsn
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 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