struct CrelIteratorState {
index: usize,
offset: u64,
addend: i64,
symidx: u32,
typ: u32,
}
Fields§
§index: usize
Index of the current relocation.
offset: u64
Offset of the latest relocation.
addend: i64
Addend of the latest relocation.
symidx: u32
Symbol index of the latest relocation.
typ: u32
Type of the latest relocation.
Trait Implementations§
Source§impl Clone for CrelIteratorState
impl Clone for CrelIteratorState
Source§fn clone(&self) -> CrelIteratorState
fn clone(&self) -> CrelIteratorState
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 CrelIteratorState
impl Debug for CrelIteratorState
Source§impl Default for CrelIteratorState
impl Default for CrelIteratorState
Source§fn default() -> CrelIteratorState
fn default() -> CrelIteratorState
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for CrelIteratorState
impl RefUnwindSafe for CrelIteratorState
impl Send for CrelIteratorState
impl Sync for CrelIteratorState
impl Unpin for CrelIteratorState
impl UnwindSafe for CrelIteratorState
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