pub enum SettingAction {
New,
Changed,
Deleted,
// some variants omitted
}
Variants§
Trait Implementations§
Source§impl Clone for SettingAction
impl Clone for SettingAction
Source§fn clone(&self) -> SettingAction
fn clone(&self) -> SettingAction
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 SettingAction
impl Debug for SettingAction
Source§impl Display for SettingAction
impl Display for SettingAction
Source§impl<'a> FromValue<'a> for SettingAction
impl<'a> FromValue<'a> for SettingAction
unsafe fn from_value(value: &Value) -> Self
Source§impl<'a> FromValueOptional<'a> for SettingAction
impl<'a> FromValueOptional<'a> for SettingAction
unsafe fn from_value_optional(value: &Value) -> Option<Self>
Source§impl Hash for SettingAction
impl Hash for SettingAction
Source§impl Ord for SettingAction
impl Ord for SettingAction
Source§fn cmp(&self, other: &SettingAction) -> Ordering
fn cmp(&self, other: &SettingAction) -> 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 SettingAction
impl PartialEq for SettingAction
Source§impl PartialOrd for SettingAction
impl PartialOrd for SettingAction
Source§impl StaticType for SettingAction
impl StaticType for SettingAction
Source§fn static_type() -> Type
fn static_type() -> Type
Returns the type identifier of
Self
.impl Copy for SettingAction
impl Eq for SettingAction
impl StructuralPartialEq for SettingAction
Auto Trait Implementations§
impl Freeze for SettingAction
impl RefUnwindSafe for SettingAction
impl Send for SettingAction
impl Sync for SettingAction
impl Unpin for SettingAction
impl UnwindSafe for SettingAction
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> ToSendValue for T
impl<T> ToSendValue for T
Source§fn to_send_value(&self) -> SendValue
fn to_send_value(&self) -> SendValue
Returns a
SendValue
clone of self
.