Enum wasmtime_environ::SettingKind
source · pub enum SettingKind {
Enum,
Num,
Bool,
Preset,
}
Expand description
Different kinds of Setting
values that can be configured in a
CompilerBuilder
Variants§
Enum
The setting is an enumeration, meaning it’s one of a set of values.
Num
The setting is a number.
Bool
The setting is a boolean.
Preset
The setting is a preset.
Trait Implementations§
source§impl Clone for SettingKind
impl Clone for SettingKind
source§fn clone(&self) -> SettingKind
fn clone(&self) -> SettingKind
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for SettingKind
impl Debug for SettingKind
impl Copy for SettingKind
Auto Trait Implementations§
impl RefUnwindSafe for SettingKind
impl Send for SettingKind
impl Sync for SettingKind
impl Unpin for SettingKind
impl UnwindSafe for SettingKind
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more