pub struct CargoWasmerPackageAnnotation {
pub namespace: String,
pub package: Option<String>,
pub wasmer_extra_flags: Option<String>,
pub abi: Abi,
pub fs: Option<HashMap<String, PathBuf>>,
pub bindings: Option<Bindings>,
}
Expand description
The annotation used by cargo wapm
when it parses the
[package.metadata.wapm]
table in your Cargo.toml
.
Fields§
§namespace: String
The namespace this package should be published under.
package: Option<String>
The name the package should be published under, if it differs from the crate name.
wasmer_extra_flags: Option<String>
Extra flags that should be passed to the wasmer
CLI.
abi: Abi
The ABI to use when adding the compiled crate to the package.
fs: Option<HashMap<String, PathBuf>>
Filesystem mappings.
bindings: Option<Bindings>
Binding declarations for the crate.
Trait Implementations§
Source§impl Clone for CargoWasmerPackageAnnotation
impl Clone for CargoWasmerPackageAnnotation
Source§fn clone(&self) -> CargoWasmerPackageAnnotation
fn clone(&self) -> CargoWasmerPackageAnnotation
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 CargoWasmerPackageAnnotation
impl Debug for CargoWasmerPackageAnnotation
Source§impl<'de> Deserialize<'de> for CargoWasmerPackageAnnotation
impl<'de> Deserialize<'de> for CargoWasmerPackageAnnotation
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 CargoWasmerPackageAnnotation
impl PartialEq for CargoWasmerPackageAnnotation
Source§fn eq(&self, other: &CargoWasmerPackageAnnotation) -> bool
fn eq(&self, other: &CargoWasmerPackageAnnotation) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl Eq for CargoWasmerPackageAnnotation
impl StructuralPartialEq for CargoWasmerPackageAnnotation
Auto Trait Implementations§
impl Freeze for CargoWasmerPackageAnnotation
impl RefUnwindSafe for CargoWasmerPackageAnnotation
impl Send for CargoWasmerPackageAnnotation
impl Sync for CargoWasmerPackageAnnotation
impl Unpin for CargoWasmerPackageAnnotation
impl UnwindSafe for CargoWasmerPackageAnnotation
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.