pub struct LibraryInfo {
pub instantiate_after_shims: bool,
pub arguments: Vec<(String, Instance)>,
}
Expand description
Provides fine-grained control of how a library module is instantiated relative to other module instances
Fields§
§instantiate_after_shims: bool
If true, instantiate any shims prior to this module
arguments: Vec<(String, Instance)>
Instantiation arguments
Trait Implementations§
Source§impl Clone for LibraryInfo
impl Clone for LibraryInfo
Source§fn clone(&self) -> LibraryInfo
fn clone(&self) -> LibraryInfo
Returns a duplicate 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 moreAuto Trait Implementations§
impl Freeze for LibraryInfo
impl RefUnwindSafe for LibraryInfo
impl Send for LibraryInfo
impl Sync for LibraryInfo
impl Unpin for LibraryInfo
impl UnwindSafe for LibraryInfo
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