Struct wasmer_toml::WaiBindings
source · pub struct WaiBindings {
pub wai_version: Version,
pub exports: Option<PathBuf>,
pub imports: Vec<PathBuf>,
}
Fields§
§wai_version: Version
The version of the WAI format being used.
exports: Option<PathBuf>
The *.wai
file defining the interface this package exposes.
imports: Vec<PathBuf>
The *.wai
files for any functionality this package imports from the
host.
Trait Implementations§
source§impl Clone for WaiBindings
impl Clone for WaiBindings
source§fn clone(&self) -> WaiBindings
fn clone(&self) -> WaiBindings
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 WaiBindings
impl Debug for WaiBindings
source§impl<'de> Deserialize<'de> for WaiBindings
impl<'de> Deserialize<'de> for WaiBindings
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl PartialEq for WaiBindings
impl PartialEq for WaiBindings
source§fn eq(&self, other: &WaiBindings) -> bool
fn eq(&self, other: &WaiBindings) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for WaiBindings
impl Serialize for WaiBindings
impl Eq for WaiBindings
impl StructuralEq for WaiBindings
impl StructuralPartialEq for WaiBindings
Auto Trait Implementations§
impl RefUnwindSafe for WaiBindings
impl Send for WaiBindings
impl Sync for WaiBindings
impl Unpin for WaiBindings
impl UnwindSafe for WaiBindings
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
§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.