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