pub struct AdapterModuleDidNotExport(/* private fields */);
Expand description
An error that can be returned from adapting a core Wasm module into a component using an adapter module.
If the core Wasm module contained an import that it requires to be satisfied by the adapter, and the adapter does not contain an export with the same name, an instance of this error is returned.
Trait Implementations§
Source§impl Clone for AdapterModuleDidNotExport
impl Clone for AdapterModuleDidNotExport
Source§fn clone(&self) -> AdapterModuleDidNotExport
fn clone(&self) -> AdapterModuleDidNotExport
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 moreSource§impl Debug for AdapterModuleDidNotExport
impl Debug for AdapterModuleDidNotExport
Source§impl Display for AdapterModuleDidNotExport
impl Display for AdapterModuleDidNotExport
Source§impl Error for AdapterModuleDidNotExport
impl Error for AdapterModuleDidNotExport
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Auto Trait Implementations§
impl Freeze for AdapterModuleDidNotExport
impl RefUnwindSafe for AdapterModuleDidNotExport
impl Send for AdapterModuleDidNotExport
impl Sync for AdapterModuleDidNotExport
impl Unpin for AdapterModuleDidNotExport
impl UnwindSafe for AdapterModuleDidNotExport
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