pub enum RegistryOperation {
UnknownFutureValue,
Delete,
Modify,
Create,
Unknown,
}
Variants§
Trait Implementations§
Source§impl Clone for RegistryOperation
impl Clone for RegistryOperation
Source§fn clone(&self) -> RegistryOperation
fn clone(&self) -> RegistryOperation
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 RegistryOperation
impl Debug for RegistryOperation
Source§impl<'de> Deserialize<'de> for RegistryOperation
impl<'de> Deserialize<'de> for RegistryOperation
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Hash for RegistryOperation
impl Hash for RegistryOperation
Source§impl Ord for RegistryOperation
impl Ord for RegistryOperation
Source§fn cmp(&self, other: &RegistryOperation) -> Ordering
fn cmp(&self, other: &RegistryOperation) -> 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 RegistryOperation
impl PartialEq for RegistryOperation
Source§impl PartialOrd for RegistryOperation
impl PartialOrd for RegistryOperation
Source§impl Serialize for RegistryOperation
impl Serialize for RegistryOperation
impl Eq for RegistryOperation
impl StructuralPartialEq for RegistryOperation
Auto Trait Implementations§
impl Freeze for RegistryOperation
impl RefUnwindSafe for RegistryOperation
impl Send for RegistryOperation
impl Sync for RegistryOperation
impl Unpin for RegistryOperation
impl UnwindSafe for RegistryOperation
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