Struct object::macho::DyldSubCacheInfo
source · [−]#[repr(C)]pub struct DyldSubCacheInfo<E: Endian> {
pub uuid: [u8; 16],
pub cumulative_size: U64<E>,
}Expand description
Corresponds to a struct whose source code has not been published as of Nov 2021. Added in the dyld cache version which shipped with macOS 12 / iOS 15.
Fields
uuid: [u8; 16]The UUID of this subcache.
cumulative_size: U64<E>The size of this subcache plus all previous subcaches.
Trait Implementations
Auto Trait Implementations
impl<E> RefUnwindSafe for DyldSubCacheInfo<E> where
E: RefUnwindSafe,
impl<E> Send for DyldSubCacheInfo<E> where
E: Send,
impl<E> Sync for DyldSubCacheInfo<E> where
E: Sync,
impl<E> Unpin for DyldSubCacheInfo<E> where
E: Unpin,
impl<E> UnwindSafe for DyldSubCacheInfo<E> where
E: UnwindSafe,
Blanket Implementations
Mutably borrows from an owned value. Read more