[][src]Struct esbuild_rs::TransformOptionsBuilder

pub struct TransformOptionsBuilder {
    pub source_map: SourceMap,
    pub target: Target,
    pub engines: Vec<Engine>,
    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: HashMap<String, String>,
    pub pure_functions: Vec<String>,
    pub source_file: String,
    pub loader: Loader,
}

Fields

source_map: SourceMaptarget: Targetengines: Vec<Engine>strict: StrictOptionsminify_whitespace: boolminify_identifiers: boolminify_syntax: booljsx_factory: Stringjsx_fragment: Stringdefines: HashMap<String, String>pure_functions: Vec<String>source_file: Stringloader: Loader

Implementations

impl TransformOptionsBuilder[src]

Trait Implementations

impl Clone for TransformOptionsBuilder[src]

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.