Struct FilesetEntryCommand
struct FilesetEntryCommand<E: Endian> { ... }
Fields
cmd: crate::endian::U32<E>cmdsize: crate::endian::U32<E>includes id string
vmaddr: crate::endian::U64<E>memory address of the dylib
fileoff: crate::endian::U64<E>file offset of the dylib
entry_id: LcStr<E>contained entry id
reserved: crate::endian::U32<E>entry_id is 32-bits long, so this is the reserved padding
Implementations
impl<E> Freeze for FilesetEntryCommand<E>
impl<E> RefUnwindSafe for FilesetEntryCommand<E>
impl<E> Send for FilesetEntryCommand<E>
impl<E> Sync for FilesetEntryCommand<E>
impl<E> Unpin for FilesetEntryCommand<E>
impl<E> UnwindSafe for FilesetEntryCommand<E>
impl<E: $crate::clone::Clone + Endian> Clone for FilesetEntryCommand<E>
fn clone(self: &Self) -> FilesetEntryCommand<E>
impl<E: $crate::fmt::Debug + Endian> Debug for FilesetEntryCommand<E>
fn fmt(self: &Self, f: &mut $crate::fmt::Formatter<'_>) -> $crate::fmt::Result
impl<E: $crate::marker::Copy + Endian> Copy for FilesetEntryCommand<E>
impl<E: Endian> Pod for FilesetEntryCommand<E>
impl<T> Any for FilesetEntryCommand<E>
fn type_id(self: &Self) -> TypeId
impl<T> Borrow for FilesetEntryCommand<E>
fn borrow(self: &Self) -> &T
impl<T> BorrowMut for FilesetEntryCommand<E>
fn borrow_mut(self: &mut Self) -> &mut T
impl<T> CloneToUninit for FilesetEntryCommand<E>
unsafe fn clone_to_uninit(self: &Self, dest: *mut u8)
impl<T> From for FilesetEntryCommand<E>
fn from(t: T) -> TReturns the argument unchanged.
impl<T> ToOwned for FilesetEntryCommand<E>
fn to_owned(self: &Self) -> Tfn clone_into(self: &Self, target: &mut T)
impl<T, U> Into for FilesetEntryCommand<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 FilesetEntryCommand<E>
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
impl<T, U> TryInto for FilesetEntryCommand<E>
fn try_into(self: Self) -> Result<U, <U as TryFrom<T>>::Error>