pub struct DynamicLibraryPlatformConfig { /* private fields */ }
Expand description
Configures how a DynamicLibrary
should be created on a platform.
The different constructors represents the different constructors modes of
DynamicLibrary
. See DynamicLibraryCreationMode
for more information.
Implementations§
Source§impl DynamicLibraryPlatformConfig
impl DynamicLibraryPlatformConfig
Sourcepub const fn new(mode: DynamicLibraryCreationMode) -> Self
pub const fn new(mode: DynamicLibraryCreationMode) -> Self
Create DynamicLibraryPlatformConfig
using the provided
DynamicLibraryCreationMode
Trait Implementations§
Source§impl Clone for DynamicLibraryPlatformConfig
impl Clone for DynamicLibraryPlatformConfig
Source§fn clone(&self) -> DynamicLibraryPlatformConfig
fn clone(&self) -> DynamicLibraryPlatformConfig
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for DynamicLibraryPlatformConfig
impl Debug for DynamicLibraryPlatformConfig
Auto Trait Implementations§
impl Freeze for DynamicLibraryPlatformConfig
impl RefUnwindSafe for DynamicLibraryPlatformConfig
impl Send for DynamicLibraryPlatformConfig
impl Sync for DynamicLibraryPlatformConfig
impl Unpin for DynamicLibraryPlatformConfig
impl UnwindSafe for DynamicLibraryPlatformConfig
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