[][src]Struct wasm_snip::Options

pub struct Options {
    pub functions: Vec<String>,
    pub patterns: Vec<String>,
    pub snip_rust_fmt_code: bool,
    pub snip_rust_panicking_code: bool,
    pub skip_producers_section: bool,
}

Options for controlling which functions in what .wasm file should be snipped.

Fields

functions: Vec<String>

The functions that should be snipped from the .wasm file.

patterns: Vec<String>

The regex patterns whose matches should be snipped from the .wasm file.

snip_rust_fmt_code: bool

Should Rust std::fmt and core::fmt functions be snipped?

snip_rust_panicking_code: bool

Should Rust std::panicking and core::panicking functions be snipped?

skip_producers_section: bool

Should we skip generating the "producers" custom section?

Trait Implementations

impl Clone for Options[src]

impl Default for Options[src]

impl Debug for Options[src]

Auto Trait Implementations

impl Send for Options

impl Sync for Options

impl Unpin for Options

impl UnwindSafe for Options

impl RefUnwindSafe for Options

Blanket Implementations

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.

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

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

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