[][src]Struct wasmer_runtime::CompilerConfig

pub struct CompilerConfig {
    pub symbol_map: Option<HashMap<u32, String, RandomState>>,
    pub memory_bound_check_mode: MemoryBoundCheckMode,
    pub enforce_stack_check: bool,
    pub track_state: bool,
    pub features: Features,
    pub triple: Option<String>,
    pub cpu_name: Option<String>,
    pub cpu_features: Option<String>,
    pub backend_specific_config: Option<BackendCompilerConfig>,
}

Configuration data for the compiler

Fields

symbol_map: Option<HashMap<u32, String, RandomState>>

Symbol information generated from emscripten; used for more detailed debug messages

memory_bound_check_mode: MemoryBoundCheckModeenforce_stack_check: booltrack_state: boolfeatures: Featurestriple: Option<String>cpu_name: Option<String>cpu_features: Option<String>backend_specific_config: Option<BackendCompilerConfig>

Trait Implementations

impl Debug for CompilerConfig[src]

impl Default for CompilerConfig[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, 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.