[][src]Struct esbuild_rs::BuildOptions

pub struct BuildOptions {
    pub source_map: SourceMap,
    pub target: Target,
    pub engines: Engines,
    pub strict: StrictOptions,
    pub minify_whitespace: bool,
    pub minify_identifiers: bool,
    pub minify_syntax: bool,
    pub jsx_factory: String,
    pub jsx_fragment: String,
    pub defines: Defines,
    pub pure_functions: PureFunctions,
    pub global_name: String,
    pub bundle: bool,
    pub splitting: bool,
    pub outfile: String,
    pub metafile: String,
    pub outdir: String,
    pub platform: Platform,
    pub format: Format,
    pub externals: Externals,
    pub loaders: Loaders,
    pub resolve_extensions: ResolveExtensions,
    pub tsconfig: String,
    pub entry_points: EntryPoints,
}

Fields

source_map: SourceMaptarget: Targetengines: Enginesstrict: StrictOptionsminify_whitespace: boolminify_identifiers: boolminify_syntax: booljsx_factory: Stringjsx_fragment: Stringdefines: Definespure_functions: PureFunctionsglobal_name: Stringbundle: boolsplitting: booloutfile: Stringmetafile: Stringoutdir: Stringplatform: Platformformat: Formatexternals: Externalsloaders: Loadersresolve_extensions: ResolveExtensionstsconfig: Stringentry_points: EntryPoints

Auto Trait Implementations

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> 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.