pub struct DyldCacheSlidePointer3(pub u64);
Expand description
Corresponds to union dyld_cache_slide_pointer3 from dyld_cache_format.h.
Tuple Fields§
§0: u64
Implementations§
Source§impl DyldCacheSlidePointer3
impl DyldCacheSlidePointer3
Sourcepub fn runtime_offset(&self) -> u64
pub fn runtime_offset(&self) -> u64
The target of the pointer as an offset from the start of the shared cache.
Only valid if is_auth
is true.
Sourcepub fn diversity(&self) -> u16
pub fn diversity(&self) -> u16
The diversity value for authentication.
Only valid if is_auth
is true.
Trait Implementations§
Source§impl Clone for DyldCacheSlidePointer3
impl Clone for DyldCacheSlidePointer3
Source§fn clone(&self) -> DyldCacheSlidePointer3
fn clone(&self) -> DyldCacheSlidePointer3
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 DyldCacheSlidePointer3
impl Debug for DyldCacheSlidePointer3
impl Copy for DyldCacheSlidePointer3
Auto Trait Implementations§
impl Freeze for DyldCacheSlidePointer3
impl RefUnwindSafe for DyldCacheSlidePointer3
impl Send for DyldCacheSlidePointer3
impl Sync for DyldCacheSlidePointer3
impl Unpin for DyldCacheSlidePointer3
impl UnwindSafe for DyldCacheSlidePointer3
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