Struct Dylib
struct Dylib<E: Endian> { ... }
Fields
name: LcStr<E>library's path name
timestamp: crate::endian::U32<E>library's build time stamp
current_version: crate::endian::U32<E>library's current version number
compatibility_version: crate::endian::U32<E>library's compatibility vers number
Implementations
impl<E> Freeze for Dylib<E>
impl<E> RefUnwindSafe for Dylib<E>
impl<E> Send for Dylib<E>
impl<E> Sync for Dylib<E>
impl<E> Unpin for Dylib<E>
impl<E> UnwindSafe for Dylib<E>
impl<E: $crate::clone::Clone + Endian> Clone for Dylib<E>
fn clone(self: &Self) -> Dylib<E>
impl<E: $crate::fmt::Debug + Endian> Debug for Dylib<E>
fn fmt(self: &Self, f: &mut $crate::fmt::Formatter<'_>) -> $crate::fmt::Result
impl<E: $crate::marker::Copy + Endian> Copy for Dylib<E>
impl<E: Endian> Pod for Dylib<E>
impl<T> Any for Dylib<E>
fn type_id(self: &Self) -> TypeId
impl<T> Borrow for Dylib<E>
fn borrow(self: &Self) -> &T
impl<T> BorrowMut for Dylib<E>
fn borrow_mut(self: &mut Self) -> &mut T
impl<T> CloneToUninit for Dylib<E>
unsafe fn clone_to_uninit(self: &Self, dest: *mut u8)
impl<T> From for Dylib<E>
fn from(t: T) -> TReturns the argument unchanged.
impl<T> ToOwned for Dylib<E>
fn to_owned(self: &Self) -> Tfn clone_into(self: &Self, target: &mut T)
impl<T, U> Into for Dylib<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 Dylib<E>
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
impl<T, U> TryInto for Dylib<E>
fn try_into(self: Self) -> Result<U, <U as TryFrom<T>>::Error>