[][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: Target,
    pub profile: BuildProfile,
    pub mode: InstallMode,
    pub out_dir: PathBuf,
    pub out_name: Option<String>,
    pub bindgen: Option<Status>,
    pub cache: Cache,
    pub extra_options: Vec<String>,
}

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

Fields

crate_path: PathBufcrate_data: CrateDatascope: Option<String>disable_dts: booltarget: Targetprofile: BuildProfilemode: InstallModeout_dir: PathBufout_name: Option<String>bindgen: Option<Status>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 RefUnwindSafe for Build

impl Send for Build

impl Sync for Build

impl Unpin for Build

impl UnwindSafe for Build

Blanket Implementations

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

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

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

impl<T> Erased for T

impl<T> From<T> for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 

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