pub struct ManifestBuilder { /* private fields */ }
Expand description
Builder for Manifest
.
Implementations§
Source§impl ManifestBuilder
impl ManifestBuilder
Sourcepub fn package(&mut self, value: Option<Package>) -> &mut Self
pub fn package(&mut self, value: Option<Package>) -> &mut Self
Metadata about the package itself.
Sourcepub fn dependencies(&mut self, value: HashMap<String, VersionReq>) -> &mut Self
pub fn dependencies(&mut self, value: HashMap<String, VersionReq>) -> &mut Self
The package’s dependencies.
Sourcepub fn fs(&mut self, value: IndexMap<String, PathBuf>) -> &mut Self
pub fn fs(&mut self, value: IndexMap<String, PathBuf>) -> &mut Self
The mappings used when making bundled assets available to WebAssembly instances, in the form guest -> host.
Sourcepub fn modules(&mut self, value: Vec<Module>) -> &mut Self
pub fn modules(&mut self, value: Vec<Module>) -> &mut Self
WebAssembly modules to be published.
Source§impl ManifestBuilder
impl ManifestBuilder
pub fn new(package: Package) -> Self
Sourcepub fn map_fs(
&mut self,
guest: impl Into<String>,
host: impl Into<PathBuf>,
) -> &mut Self
pub fn map_fs( &mut self, guest: impl Into<String>, host: impl Into<PathBuf>, ) -> &mut Self
Include a directory on the host in the package and make it available to
a WebAssembly guest at the guest
path.
Sourcepub fn with_dependency(
&mut self,
name: impl Into<String>,
version: VersionReq,
) -> &mut Self
pub fn with_dependency( &mut self, name: impl Into<String>, version: VersionReq, ) -> &mut Self
Add a dependency to the Manifest
.
Sourcepub fn with_module(&mut self, module: Module) -> &mut Self
pub fn with_module(&mut self, module: Module) -> &mut Self
Sourcepub fn with_command(&mut self, command: Command) -> &mut Self
pub fn with_command(&mut self, command: Command) -> &mut Self
Trait Implementations§
Source§impl Clone for ManifestBuilder
impl Clone for ManifestBuilder
Source§fn clone(&self) -> ManifestBuilder
fn clone(&self) -> ManifestBuilder
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 moreAuto Trait Implementations§
impl Freeze for ManifestBuilder
impl RefUnwindSafe for ManifestBuilder
impl Send for ManifestBuilder
impl Sync for ManifestBuilder
impl Unpin for ManifestBuilder
impl UnwindSafe for ManifestBuilder
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
)