enum DyldCacheMappingVersion<'data, E = Endianness>where
    E: Endian,{
    V1(&'data DyldCacheMappingInfo<E>),
    V2(&'data DyldCacheMappingAndSlideInfo<E>),
}Variants§
V1(&'data DyldCacheMappingInfo<E>)
V2(&'data DyldCacheMappingAndSlideInfo<E>)
Trait Implementations§
Source§impl<'data, E> Clone for DyldCacheMappingVersion<'data, E>
 
impl<'data, E> Clone for DyldCacheMappingVersion<'data, E>
Source§fn clone(&self) -> DyldCacheMappingVersion<'data, E>
 
fn clone(&self) -> DyldCacheMappingVersion<'data, E>
Returns a duplicate 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<'data, E> Copy for DyldCacheMappingVersion<'data, E>
Auto Trait Implementations§
impl<'data, E> Freeze for DyldCacheMappingVersion<'data, E>
impl<'data, E> RefUnwindSafe for DyldCacheMappingVersion<'data, E>where
    E: RefUnwindSafe,
impl<'data, E> Send for DyldCacheMappingVersion<'data, E>where
    E: Sync,
impl<'data, E> Sync for DyldCacheMappingVersion<'data, E>where
    E: Sync,
impl<'data, E> Unpin for DyldCacheMappingVersion<'data, E>
impl<'data, E> UnwindSafe for DyldCacheMappingVersion<'data, E>where
    E: RefUnwindSafe,
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