Struct wasmedge_sys::ImportType
source · pub struct ImportType<'module> { /* private fields */ }
Expand description
Defines the types of the imported wasm value.
Implementations§
source§impl<'module> ImportType<'module>
impl<'module> ImportType<'module>
sourcepub fn ty(&self) -> WasmEdgeResult<ExternalInstanceType>
pub fn ty(&self) -> WasmEdgeResult<ExternalInstanceType>
Returns the type of this import.
sourcepub fn name(&self) -> Cow<'_, str>
pub fn name(&self) -> Cow<'_, str>
Returns the field name of the module that this import is expected to come from.
sourcepub fn module_name(&self) -> Cow<'_, str>
pub fn module_name(&self) -> Cow<'_, str>
Returns the module name that this import is expected to come from.
sourcepub fn as_ptr(&self) -> *const WasmEdge_ImportTypeContext
Available on crate feature ffi
only.
pub fn as_ptr(&self) -> *const WasmEdge_ImportTypeContext
ffi
only.Provides a raw pointer to the inner ImportType context.
Trait Implementations§
source§impl<'module> Debug for ImportType<'module>
impl<'module> Debug for ImportType<'module>
Auto Trait Implementations§
impl<'module> RefUnwindSafe for ImportType<'module>
impl<'module> Send for ImportType<'module>
impl<'module> Sync for ImportType<'module>
impl<'module> Unpin for ImportType<'module>
impl<'module> UnwindSafe for ImportType<'module>
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