#[repr(C)]pub struct Dylib<E: Endian> {
pub name: LcStr<E>,
pub timestamp: U32<E>,
pub current_version: U32<E>,
pub compatibility_version: U32<E>,
}
Fields
name: LcStr<E>
library’s path name
timestamp: U32<E>
library’s build time stamp
current_version: U32<E>
library’s current version number
compatibility_version: U32<E>
library’s compatibility vers number
Trait Implementations
impl<E: Copy + Endian> Copy for Dylib<E>
impl<E: Endian> Pod for Dylib<E>
Auto Trait Implementations
impl<E> RefUnwindSafe for Dylib<E> where
E: RefUnwindSafe,
impl<E> Send for Dylib<E> where
E: Send,
impl<E> Sync for Dylib<E> where
E: Sync,
impl<E> Unpin for Dylib<E> where
E: Unpin,
impl<E> UnwindSafe for Dylib<E> where
E: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more