#[repr(u8)]pub enum DataOperationType {
Add = 0,
Clear = 1,
Modify = 2,
}Variants§
Add = 0
Data is being added or was added
Clear = 1
Data is being cleared or was cleared
Modify = 2
Data is being modified or was modified
Implementations§
Trait Implementations§
Source§impl Clone for DataOperationType
impl Clone for DataOperationType
Source§fn clone(&self) -> DataOperationType
fn clone(&self) -> DataOperationType
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 DataOperationType
impl Debug for DataOperationType
Source§impl<'de> Deserialize<'de> for DataOperationType
impl<'de> Deserialize<'de> for DataOperationType
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 From<DataOperationType> for u8
impl From<DataOperationType> for u8
Source§fn from(val: DataOperationType) -> Self
fn from(val: DataOperationType) -> Self
Converts to this type from the input type.
Source§impl PartialEq for DataOperationType
impl PartialEq for DataOperationType
Source§impl Serialize for DataOperationType
impl Serialize for DataOperationType
impl Copy for DataOperationType
impl Eq for DataOperationType
impl StructuralPartialEq for DataOperationType
Auto Trait Implementations§
impl Freeze for DataOperationType
impl RefUnwindSafe for DataOperationType
impl Send for DataOperationType
impl Sync for DataOperationType
impl Unpin for DataOperationType
impl UnwindSafe for DataOperationType
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