Struct DyldSubCacheEntryV2
struct DyldSubCacheEntryV2<E: Endian> { ... }
Added in dyld-1042.1, which shipped with macOS 13 / iOS 16.
Called dyld_subcache_entry as of dyld-1042.1.
Fields
uuid: [u8; 16]The UUID of this subcache.
cache_vm_offset: crate::endian::U64<E>The offset of this subcache from the main cache base address.
file_suffix: [u8; 32]The file name suffix of the subCache file, e.g. ".25.data" or ".03.development".
Implementations
impl<E> Freeze for DyldSubCacheEntryV2<E>
impl<E> RefUnwindSafe for DyldSubCacheEntryV2<E>
impl<E> Send for DyldSubCacheEntryV2<E>
impl<E> Sync for DyldSubCacheEntryV2<E>
impl<E> Unpin for DyldSubCacheEntryV2<E>
impl<E> UnwindSafe for DyldSubCacheEntryV2<E>
impl<E: $crate::clone::Clone + Endian> Clone for DyldSubCacheEntryV2<E>
fn clone(self: &Self) -> DyldSubCacheEntryV2<E>
impl<E: $crate::fmt::Debug + Endian> Debug for DyldSubCacheEntryV2<E>
fn fmt(self: &Self, f: &mut $crate::fmt::Formatter<'_>) -> $crate::fmt::Result
impl<E: $crate::marker::Copy + Endian> Copy for DyldSubCacheEntryV2<E>
impl<E: Endian> Pod for DyldSubCacheEntryV2<E>
impl<T> Any for DyldSubCacheEntryV2<E>
fn type_id(self: &Self) -> TypeId
impl<T> Borrow for DyldSubCacheEntryV2<E>
fn borrow(self: &Self) -> &T
impl<T> BorrowMut for DyldSubCacheEntryV2<E>
fn borrow_mut(self: &mut Self) -> &mut T
impl<T> CloneToUninit for DyldSubCacheEntryV2<E>
unsafe fn clone_to_uninit(self: &Self, dest: *mut u8)
impl<T> From for DyldSubCacheEntryV2<E>
fn from(t: T) -> TReturns the argument unchanged.
impl<T> ToOwned for DyldSubCacheEntryV2<E>
fn to_owned(self: &Self) -> Tfn clone_into(self: &Self, target: &mut T)
impl<T, U> Into for DyldSubCacheEntryV2<E>
fn into(self: Self) -> UCalls
U::from(self).That is, this conversion is whatever the implementation of
[From]<T> for Uchooses to do.
impl<T, U> TryFrom for DyldSubCacheEntryV2<E>
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
impl<T, U> TryInto for DyldSubCacheEntryV2<E>
fn try_into(self: Self) -> Result<U, <U as TryFrom<T>>::Error>