#[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§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more