pub enum PatchChangeKind {
Add,
Delete,
Update,
Unknown,
}Variants§
Trait Implementations§
Source§impl Clone for PatchChangeKind
impl Clone for PatchChangeKind
Source§fn clone(&self) -> PatchChangeKind
fn clone(&self) -> PatchChangeKind
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 moreimpl Copy for PatchChangeKind
Source§impl Debug for PatchChangeKind
impl Debug for PatchChangeKind
impl Eq for PatchChangeKind
Source§impl PartialEq for PatchChangeKind
impl PartialEq for PatchChangeKind
Source§fn eq(&self, other: &PatchChangeKind) -> bool
fn eq(&self, other: &PatchChangeKind) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PatchChangeKind
Auto Trait Implementations§
impl Freeze for PatchChangeKind
impl RefUnwindSafe for PatchChangeKind
impl Send for PatchChangeKind
impl Sync for PatchChangeKind
impl Unpin for PatchChangeKind
impl UnsafeUnpin for PatchChangeKind
impl UnwindSafe for PatchChangeKind
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