Struct object::macho::DyldCacheMappingInfo
source · [−]#[repr(C)]pub struct DyldCacheMappingInfo<E: Endian> {
pub address: U64<E>,
pub size: U64<E>,
pub file_offset: U64<E>,
pub max_prot: U32<E>,
pub init_prot: U32<E>,
}
Expand description
Corresponds to struct dyld_cache_mapping_info from dyld_cache_format.h.
Fields
address: U64<E>
size: U64<E>
file_offset: U64<E>
max_prot: U32<E>
init_prot: U32<E>
Trait Implementations
Auto Trait Implementations
impl<E> RefUnwindSafe for DyldCacheMappingInfo<E> where
E: RefUnwindSafe,
impl<E> Send for DyldCacheMappingInfo<E> where
E: Send,
impl<E> Sync for DyldCacheMappingInfo<E> where
E: Sync,
impl<E> Unpin for DyldCacheMappingInfo<E> where
E: Unpin,
impl<E> UnwindSafe for DyldCacheMappingInfo<E> where
E: UnwindSafe,
Blanket Implementations
Mutably borrows from an owned value. Read more