[][src]Struct wasm_pack::command::build::Build

pub struct Build {
    pub crate_path: PathBuf,
    pub crate_data: CrateData,
    pub scope: Option<String>,
    pub disable_dts: bool,
    pub target: String,
    pub profile: BuildProfile,
    pub mode: BuildMode,
    pub out_dir: PathBuf,
    pub bindgen: Option<Download>,
    pub cache: Cache,
    pub extra_options: Vec<String>,
}

Everything required to configure and run the wasm-pack init command.

Fields

crate_path: PathBufcrate_data: CrateDatascope: Option<String>disable_dts: booltarget: Stringprofile: BuildProfilemode: BuildModeout_dir: PathBufbindgen: Option<Download>cache: Cacheextra_options: Vec<String>

Methods

impl Build
[src]

pub fn try_from_opts(build_opts: BuildOptions) -> Result<Self, Error>
[src]

Construct a build command from the given options.

pub fn set_cache(&mut self, cache: Cache)
[src]

Configures the global binary cache used for this build

pub fn run(&mut self) -> Result<(), Error>
[src]

Execute this Build command.

Auto Trait Implementations

impl Send for Build

impl Sync for Build

Blanket Implementations

impl<T> From for T
[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

πŸ”¬ This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

πŸ”¬ This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T