Enum cranelift_codegen::settings::SettingKind
source · pub enum SettingKind {
Enum,
Num,
Bool,
Preset,
}
Expand description
Represents the kind of setting.
Variants§
Enum
The setting is an enumeration.
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
source§impl PartialEq<SettingKind> for SettingKind
impl PartialEq<SettingKind> for SettingKind
source§fn eq(&self, other: &SettingKind) -> bool
fn eq(&self, other: &SettingKind) -> bool
impl Copy for SettingKind
impl Eq for SettingKind
impl StructuralEq for SettingKind
impl StructuralPartialEq 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<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.