Struct DylibTableOfContents
struct DylibTableOfContents<E: Endian> { ... }
Fields
symbol_index: crate::endian::U32<E>the defined external symbol (index into the symbol table)
module_index: crate::endian::U32<E>index into the module table this symbol is defined in
Implementations
impl<E> Freeze for DylibTableOfContents<E>
impl<E> RefUnwindSafe for DylibTableOfContents<E>
impl<E> Send for DylibTableOfContents<E>
impl<E> Sync for DylibTableOfContents<E>
impl<E> Unpin for DylibTableOfContents<E>
impl<E> UnwindSafe for DylibTableOfContents<E>
impl<E: $crate::clone::Clone + Endian> Clone for DylibTableOfContents<E>
fn clone(self: &Self) -> DylibTableOfContents<E>
impl<E: $crate::fmt::Debug + Endian> Debug for DylibTableOfContents<E>
fn fmt(self: &Self, f: &mut $crate::fmt::Formatter<'_>) -> $crate::fmt::Result
impl<E: $crate::marker::Copy + Endian> Copy for DylibTableOfContents<E>
impl<E: Endian> Pod for DylibTableOfContents<E>
impl<T> Any for DylibTableOfContents<E>
fn type_id(self: &Self) -> TypeId
impl<T> Borrow for DylibTableOfContents<E>
fn borrow(self: &Self) -> &T
impl<T> BorrowMut for DylibTableOfContents<E>
fn borrow_mut(self: &mut Self) -> &mut T
impl<T> CloneToUninit for DylibTableOfContents<E>
unsafe fn clone_to_uninit(self: &Self, dest: *mut u8)
impl<T> From for DylibTableOfContents<E>
fn from(t: T) -> TReturns the argument unchanged.
impl<T> ToOwned for DylibTableOfContents<E>
fn to_owned(self: &Self) -> Tfn clone_into(self: &Self, target: &mut T)
impl<T, U> Into for DylibTableOfContents<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 DylibTableOfContents<E>
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
impl<T, U> TryInto for DylibTableOfContents<E>
fn try_into(self: Self) -> Result<U, <U as TryFrom<T>>::Error>