Struct DyldCacheRelocationIteratorV2

Source
struct DyldCacheRelocationIteratorV2<'data, E = Endianness, R = &'data [u8]>
where E: Endian, R: ReadRef<'data>,
{
Show 14 fields data: R, endian: E, mapping_file_offset: u64, page_size: u64, delta_mask: u64, delta_shift: u32, value_add: u64, page_starts: &'data [U16<E>], page_extras: &'data [U16<E>], state: RelocationStateV2, start_index: usize, extra_index: usize, page_offset: u64, offset: u64,
}

Fields§

§data: R§endian: E§mapping_file_offset: u64§page_size: u64§delta_mask: u64§delta_shift: u32§value_add: u64§page_starts: &'data [U16<E>]§page_extras: &'data [U16<E>]§state: RelocationStateV2§start_index: usize

The next index within page_starts.

§extra_index: usize

The next index within page_extras.

§page_offset: u64

The current page offset within the mapping.

§offset: u64

The offset of the next linked list entry within the page.

Implementations§

Source§

impl<'data, E, R> DyldCacheRelocationIteratorV2<'data, E, R>
where E: Endian, R: ReadRef<'data>,

Trait Implementations§

Source§

impl<'data, E, R> Debug for DyldCacheRelocationIteratorV2<'data, E, R>
where E: Endian + Debug, R: ReadRef<'data> + Debug,

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<'data, E, R> Freeze for DyldCacheRelocationIteratorV2<'data, E, R>
where R: Freeze, E: Freeze,

§

impl<'data, E, R> RefUnwindSafe for DyldCacheRelocationIteratorV2<'data, E, R>

§

impl<'data, E, R> Send for DyldCacheRelocationIteratorV2<'data, E, R>
where R: Send, E: Send + Sync,

§

impl<'data, E, R> Sync for DyldCacheRelocationIteratorV2<'data, E, R>
where R: Sync, E: Sync,

§

impl<'data, E, R> Unpin for DyldCacheRelocationIteratorV2<'data, E, R>
where R: Unpin, E: Unpin,

§

impl<'data, E, R> UnwindSafe for DyldCacheRelocationIteratorV2<'data, E, R>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.