struct DyldCacheRelocationIteratorV5<'data, E = Endianness, R = &'data [u8]>{
    data: R,
    endian: E,
    mapping_file_offset: u64,
    page_size: u64,
    value_add: u64,
    page_starts: &'data [U16<E>],
    state: RelocationStateV5,
    start_index: usize,
    offset: u64,
}Fields§
§data: R§endian: E§mapping_file_offset: u64§page_size: u64§value_add: u64§page_starts: &'data [U16<E>]§state: RelocationStateV5§start_index: usizeThe next index within page_starts.
offset: u64The current offset within the mapping.
Implementations§
Source§impl<'data, E, R> DyldCacheRelocationIteratorV5<'data, E, R>
 
impl<'data, E, R> DyldCacheRelocationIteratorV5<'data, E, R>
fn next(&mut self) -> Result<Option<DyldRelocation>>
Trait Implementations§
Auto Trait Implementations§
impl<'data, E, R> Freeze for DyldCacheRelocationIteratorV5<'data, E, R>
impl<'data, E, R> RefUnwindSafe for DyldCacheRelocationIteratorV5<'data, E, R>where
    R: RefUnwindSafe,
    E: RefUnwindSafe,
impl<'data, E, R> Send for DyldCacheRelocationIteratorV5<'data, E, R>
impl<'data, E, R> Sync for DyldCacheRelocationIteratorV5<'data, E, R>
impl<'data, E, R> Unpin for DyldCacheRelocationIteratorV5<'data, E, R>
impl<'data, E, R> UnwindSafe for DyldCacheRelocationIteratorV5<'data, E, R>
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