#[repr(i32)]pub enum VariableSetKind {
Undefined = 0,
VarSetValue = 1,
VarSetDefault = 2,
VarSetCurrent = 3,
VarSetMulti = 4,
VarReset = 5,
VarResetAll = 6,
}
Variants§
Undefined = 0
VarSetValue = 1
VarSetDefault = 2
VarSetCurrent = 3
VarSetMulti = 4
VarReset = 5
VarResetAll = 6
Implementations§
Trait Implementations§
Source§impl Clone for VariableSetKind
impl Clone for VariableSetKind
Source§fn clone(&self) -> VariableSetKind
fn clone(&self) -> VariableSetKind
Returns a duplicate 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 VariableSetKind
impl Debug for VariableSetKind
Source§impl Default for VariableSetKind
impl Default for VariableSetKind
Source§fn default() -> VariableSetKind
fn default() -> VariableSetKind
Returns the “default value” for a type. Read more
Source§impl From<VariableSetKind> for i32
impl From<VariableSetKind> for i32
Source§fn from(value: VariableSetKind) -> i32
fn from(value: VariableSetKind) -> i32
Converts to this type from the input type.
Source§impl Hash for VariableSetKind
impl Hash for VariableSetKind
Source§impl Ord for VariableSetKind
impl Ord for VariableSetKind
Source§fn cmp(&self, other: &VariableSetKind) -> Ordering
fn cmp(&self, other: &VariableSetKind) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for VariableSetKind
impl PartialEq for VariableSetKind
Source§impl PartialOrd for VariableSetKind
impl PartialOrd for VariableSetKind
impl Copy for VariableSetKind
impl Eq for VariableSetKind
impl StructuralPartialEq for VariableSetKind
Auto Trait Implementations§
impl Freeze for VariableSetKind
impl RefUnwindSafe for VariableSetKind
impl Send for VariableSetKind
impl Sync for VariableSetKind
impl Unpin for VariableSetKind
impl UnwindSafe for VariableSetKind
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