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§
source§impl<E: Clone + Endian> Clone for DyldCacheMappingInfo<E>
impl<E: Clone + Endian> Clone for DyldCacheMappingInfo<E>
source§fn clone(&self) -> DyldCacheMappingInfo<E>
fn clone(&self) -> DyldCacheMappingInfo<E>
Returns a copy 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 more