pub enum OperationType {
Create,
Update,
Delete,
Reaction,
}Expand description
Operation type for text streams.
Variants§
Trait Implementations§
Source§impl Clone for OperationType
impl Clone for OperationType
Source§fn clone(&self) -> OperationType
fn clone(&self) -> OperationType
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 OperationType
impl Debug for OperationType
Source§impl Default for OperationType
impl Default for OperationType
Source§fn default() -> OperationType
fn default() -> OperationType
Returns the “default value” for a type. Read more
Source§impl From<OperationType> for OperationType
impl From<OperationType> for OperationType
Source§fn from(op_type: OperationType) -> Self
fn from(op_type: OperationType) -> Self
Converts to this type from the input type.
Source§impl Hash for OperationType
impl Hash for OperationType
Source§impl PartialEq for OperationType
impl PartialEq for OperationType
impl Copy for OperationType
impl Eq for OperationType
impl StructuralPartialEq for OperationType
Auto Trait Implementations§
impl Freeze for OperationType
impl RefUnwindSafe for OperationType
impl Send for OperationType
impl Sync for OperationType
impl Unpin for OperationType
impl UnsafeUnpin for OperationType
impl UnwindSafe for OperationType
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