pub struct DyldCacheImage<'data, E = Endianness, R = &'data [u8]> where
E: Endian,
R: ReadRef<'data>, { /* private fields */ }
Expand description
One image (dylib) from inside the dyld shared cache.
Implementations
sourceimpl<'data, E, R> DyldCacheImage<'data, E, R> where
E: Endian,
R: ReadRef<'data>,
impl<'data, E, R> DyldCacheImage<'data, E, R> where
E: Endian,
R: ReadRef<'data>,
Trait Implementations
Auto Trait Implementations
impl<'data, E, R> RefUnwindSafe for DyldCacheImage<'data, E, R> where
E: RefUnwindSafe,
R: RefUnwindSafe,
impl<'data, E, R> Send for DyldCacheImage<'data, E, R> where
E: Send + Sync,
R: Send,
impl<'data, E, R> Sync for DyldCacheImage<'data, E, R> where
E: Sync,
R: Sync,
impl<'data, E, R> Unpin for DyldCacheImage<'data, E, R> where
E: Unpin,
R: Unpin,
impl<'data, E, R> UnwindSafe for DyldCacheImage<'data, E, R> where
E: UnwindSafe + RefUnwindSafe,
R: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more