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§
source§impl<E: Clone + Endian> Clone for DyldSubCacheInfo<E>
impl<E: Clone + Endian> Clone for DyldSubCacheInfo<E>
source§fn clone(&self) -> DyldSubCacheInfo<E>
fn clone(&self) -> DyldSubCacheInfo<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 moreimpl<E: Copy + Endian> Copy for DyldSubCacheInfo<E>
impl<E: Endian> Pod for DyldSubCacheInfo<E>
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§
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