pub struct Dll { /* private fields */ }Expand description
These fields contain information about code libraries dynamically loaded into processes.
Many operating systems refer to “shared code libraries” with different names, but this field set refers to all of the following:
-
Dynamic-link library (
.dll) commonly used on Windows -
Shared Object (
.so) commonly used on Unix-like operating systems -
Dynamic library (
.dylib) commonly used on macOS
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Dll
impl RefUnwindSafe for Dll
impl Send for Dll
impl Sync for Dll
impl Unpin for Dll
impl UnwindSafe for Dll
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