pub struct DyldRelocation {
pub offset: u64,
pub value: u64,
pub auth: Option<DyldRelocationAuth>,
}
Expand description
A cache mapping relocation.
Fields§
§offset: u64
The offset of the relocation within the mapping.
This can be added to either the mapping file offset or the mapping address.
value: u64
The value to be relocated.
auth: Option<DyldRelocationAuth>
The pointer authentication data, if present.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for DyldRelocation
impl RefUnwindSafe for DyldRelocation
impl Send for DyldRelocation
impl Sync for DyldRelocation
impl Unpin for DyldRelocation
impl UnwindSafe for DyldRelocation
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