Struct DataInCodeEntry
struct DataInCodeEntry<E: Endian> { ... }
Fields
offset: crate::endian::U32<E>from mach_header to start of data range
length: crate::endian::U16<E>number of bytes in data range
kind: crate::endian::U16<E>a DICE_KIND_* value
Implementations
impl<E> Freeze for DataInCodeEntry<E>
impl<E> RefUnwindSafe for DataInCodeEntry<E>
impl<E> Send for DataInCodeEntry<E>
impl<E> Sync for DataInCodeEntry<E>
impl<E> Unpin for DataInCodeEntry<E>
impl<E> UnwindSafe for DataInCodeEntry<E>
impl<E: $crate::clone::Clone + Endian> Clone for DataInCodeEntry<E>
fn clone(self: &Self) -> DataInCodeEntry<E>
impl<E: $crate::fmt::Debug + Endian> Debug for DataInCodeEntry<E>
fn fmt(self: &Self, f: &mut $crate::fmt::Formatter<'_>) -> $crate::fmt::Result
impl<E: $crate::marker::Copy + Endian> Copy for DataInCodeEntry<E>
impl<E: Endian> Pod for DataInCodeEntry<E>
impl<T> Any for DataInCodeEntry<E>
fn type_id(self: &Self) -> TypeId
impl<T> Borrow for DataInCodeEntry<E>
fn borrow(self: &Self) -> &T
impl<T> BorrowMut for DataInCodeEntry<E>
fn borrow_mut(self: &mut Self) -> &mut T
impl<T> CloneToUninit for DataInCodeEntry<E>
unsafe fn clone_to_uninit(self: &Self, dest: *mut u8)
impl<T> From for DataInCodeEntry<E>
fn from(t: T) -> TReturns the argument unchanged.
impl<T> ToOwned for DataInCodeEntry<E>
fn to_owned(self: &Self) -> Tfn clone_into(self: &Self, target: &mut T)
impl<T, U> Into for DataInCodeEntry<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 DataInCodeEntry<E>
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
impl<T, U> TryInto for DataInCodeEntry<E>
fn try_into(self: Self) -> Result<U, <U as TryFrom<T>>::Error>