pub struct DyldCacheMapping<'data, E = Endianness, R = &'data [u8]>{ /* private fields */ }
Expand description
Information about a mapping.
Implementations§
Source§impl<'data, E, R> DyldCacheMapping<'data, E, R>
impl<'data, E, R> DyldCacheMapping<'data, E, R>
Sourcepub fn file_offset(&self) -> u64
pub fn file_offset(&self) -> u64
The mapping file offset
Sourcepub fn relocations(&self) -> Result<DyldCacheRelocationIterator<'data, E, R>>
pub fn relocations(&self) -> Result<DyldCacheRelocationIterator<'data, E, R>>
Relocations for the mapping
Trait Implementations§
Source§impl<'data, E, R> Clone for DyldCacheMapping<'data, E, R>
impl<'data, E, R> Clone for DyldCacheMapping<'data, E, R>
Source§fn clone(&self) -> DyldCacheMapping<'data, E, R>
fn clone(&self) -> DyldCacheMapping<'data, E, R>
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<'data, E, R> Debug for DyldCacheMapping<'data, E, R>
impl<'data, E, R> Debug for DyldCacheMapping<'data, E, R>
impl<'data, E, R> Copy for DyldCacheMapping<'data, E, R>
Auto Trait Implementations§
impl<'data, E, R> Freeze for DyldCacheMapping<'data, E, R>
impl<'data, E, R> RefUnwindSafe for DyldCacheMapping<'data, E, R>where
E: RefUnwindSafe,
R: RefUnwindSafe,
impl<'data, E, R> Send for DyldCacheMapping<'data, E, R>
impl<'data, E, R> Sync for DyldCacheMapping<'data, E, R>
impl<'data, E, R> Unpin for DyldCacheMapping<'data, E, R>
impl<'data, E, R> UnwindSafe for DyldCacheMapping<'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