pub struct WasmBuilderSelectProject { /* private fields */ }Expand description
First step of the WasmBuilder to select the project to build.
Implementations§
Source§impl WasmBuilderSelectProject
impl WasmBuilderSelectProject
Sourcepub fn with_current_project(self) -> WasmBuilder
pub fn with_current_project(self) -> WasmBuilder
Use the current project as project for building the WASM binary.
§Panics
Panics if the CARGO_MANIFEST_DIR variable is not set. This variable
is always set by Cargo in build.rs files.
Sourcepub fn with_project(
self,
path: impl Into<PathBuf>,
) -> Result<WasmBuilder, &'static str>
pub fn with_project( self, path: impl Into<PathBuf>, ) -> Result<WasmBuilder, &'static str>
Use the given path as project for building the WASM binary.
Returns an error if the given path does not points to a Cargo.toml.
Auto Trait Implementations§
impl Freeze for WasmBuilderSelectProject
impl RefUnwindSafe for WasmBuilderSelectProject
impl Send for WasmBuilderSelectProject
impl Sync for WasmBuilderSelectProject
impl Unpin for WasmBuilderSelectProject
impl UnsafeUnpin for WasmBuilderSelectProject
impl UnwindSafe for WasmBuilderSelectProject
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