Struct DyldCacheMappingInfo

struct DyldCacheMappingInfo<E: Endian> { ... }

Corresponds to struct dyld_cache_mapping_info from dyld_cache_format.h.

Fields

address: crate::endian::U64<E>
size: crate::endian::U64<E>
file_offset: crate::endian::U64<E>
max_prot: crate::endian::U32<E>
init_prot: crate::endian::U32<E>

Implementations

impl<E> Freeze for DyldCacheMappingInfo<E>

impl<E> RefUnwindSafe for DyldCacheMappingInfo<E>

impl<E> Send for DyldCacheMappingInfo<E>

impl<E> Sync for DyldCacheMappingInfo<E>

impl<E> Unpin for DyldCacheMappingInfo<E>

impl<E> UnwindSafe for DyldCacheMappingInfo<E>

impl<E: $crate::clone::Clone + Endian> Clone for DyldCacheMappingInfo<E>

fn clone(self: &Self) -> DyldCacheMappingInfo<E>

impl<E: $crate::fmt::Debug + Endian> Debug for DyldCacheMappingInfo<E>

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

impl<E: $crate::marker::Copy + Endian> Copy for DyldCacheMappingInfo<E>

impl<E: Endian> Pod for DyldCacheMappingInfo<E>

impl<T> Any for DyldCacheMappingInfo<E>

fn type_id(self: &Self) -> TypeId

impl<T> Borrow for DyldCacheMappingInfo<E>

fn borrow(self: &Self) -> &T

impl<T> BorrowMut for DyldCacheMappingInfo<E>

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

impl<T> CloneToUninit for DyldCacheMappingInfo<E>

unsafe fn clone_to_uninit(self: &Self, dest: *mut u8)

impl<T> From for DyldCacheMappingInfo<E>

fn from(t: T) -> T

Returns the argument unchanged.

impl<T> ToOwned for DyldCacheMappingInfo<E>

fn to_owned(self: &Self) -> T
fn clone_into(self: &Self, target: &mut T)

impl<T, U> Into for DyldCacheMappingInfo<E>

fn into(self: Self) -> U

Calls U::from(self).

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

impl<T, U> TryFrom for DyldCacheMappingInfo<E>

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

impl<T, U> TryInto for DyldCacheMappingInfo<E>

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