pub enum HandoffChangeKind {
Created,
Modified,
Deleted,
}Expand description
Kind of one deterministic child-workspace change.
Variants§
Created
A previously absent file was created.
Modified
An existing file changed content.
Deleted
An existing file was deleted.
Trait Implementations§
Source§impl Clone for HandoffChangeKind
impl Clone for HandoffChangeKind
Source§fn clone(&self) -> HandoffChangeKind
fn clone(&self) -> HandoffChangeKind
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 HandoffChangeKind
Source§impl Debug for HandoffChangeKind
impl Debug for HandoffChangeKind
Source§impl<'de> Deserialize<'de> for HandoffChangeKind
impl<'de> Deserialize<'de> for HandoffChangeKind
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
impl Eq for HandoffChangeKind
Source§impl Ord for HandoffChangeKind
impl Ord for HandoffChangeKind
Source§fn cmp(&self, other: &HandoffChangeKind) -> Ordering
fn cmp(&self, other: &HandoffChangeKind) -> Ordering
1.21.0 (const: unstable) · 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 HandoffChangeKind
impl PartialEq for HandoffChangeKind
Source§impl PartialOrd for HandoffChangeKind
impl PartialOrd for HandoffChangeKind
Source§impl Serialize for HandoffChangeKind
impl Serialize for HandoffChangeKind
impl StructuralPartialEq for HandoffChangeKind
Auto Trait Implementations§
impl Freeze for HandoffChangeKind
impl RefUnwindSafe for HandoffChangeKind
impl Send for HandoffChangeKind
impl Sync for HandoffChangeKind
impl Unpin for HandoffChangeKind
impl UnsafeUnpin for HandoffChangeKind
impl UnwindSafe for HandoffChangeKind
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