pub enum TransitionKind {
Create,
Update,
Delete,
}Expand description
The kind of write operation recorded by a Transition.
Variants§
Trait Implementations§
Source§impl Clone for TransitionKind
impl Clone for TransitionKind
Source§fn clone(&self) -> TransitionKind
fn clone(&self) -> TransitionKind
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 TransitionKind
impl Debug for TransitionKind
Source§impl Hash for TransitionKind
impl Hash for TransitionKind
Source§impl PartialEq for TransitionKind
impl PartialEq for TransitionKind
Source§fn eq(&self, other: &TransitionKind) -> bool
fn eq(&self, other: &TransitionKind) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for TransitionKind
impl Eq for TransitionKind
impl StructuralPartialEq for TransitionKind
Auto Trait Implementations§
impl Freeze for TransitionKind
impl RefUnwindSafe for TransitionKind
impl Send for TransitionKind
impl Sync for TransitionKind
impl Unpin for TransitionKind
impl UnsafeUnpin for TransitionKind
impl UnwindSafe for TransitionKind
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