Enum vstorage::sync::plan::ItemAction
source · pub enum ItemAction {
SaveToStatus {
a: ItemState,
b: ItemState,
},
UpdateStatus {
hash: String,
old_a: ItemRef,
old_b: ItemRef,
new_a: ItemRef,
new_b: ItemRef,
},
ClearStatus {
uid: String,
},
CreateInA {
source: ItemState,
},
CreateInB {
source: ItemState,
},
UpdateInA {
source: Href,
target: Href,
old_a: ItemRef,
old_b: ItemRef,
},
UpdateInB {
source: Href,
target: Href,
old_a: ItemRef,
old_b: ItemRef,
},
DeleteInA {
target: ItemState,
},
DeleteInB {
target: ItemState,
},
Conflict {
a: ItemState,
b: ItemState,
is_new: bool,
},
}
Expand description
Operation to execute on an item during synchronising.
Variants§
SaveToStatus
Item is new and identical on both sides.
UpdateStatus
Item has changed and is identical on both sides.
Fields
ClearStatus
Item is gone from both sides but still present in status db.
CreateInA
CreateInB
UpdateInA
UpdateInB
DeleteInA
DeleteInB
Conflict
Item is in conflict which needs to be resolved externally.
Trait Implementations§
source§impl Clone for ItemAction
impl Clone for ItemAction
source§fn clone(&self) -> ItemAction
fn clone(&self) -> ItemAction
Returns a copy 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 ItemAction
impl Debug for ItemAction
source§impl Display for ItemAction
impl Display for ItemAction
source§impl PartialEq for ItemAction
impl PartialEq for ItemAction
source§fn eq(&self, other: &ItemAction) -> bool
fn eq(&self, other: &ItemAction) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ItemAction
Auto Trait Implementations§
impl Freeze for ItemAction
impl RefUnwindSafe for ItemAction
impl Send for ItemAction
impl Sync for ItemAction
impl Unpin for ItemAction
impl UnwindSafe for ItemAction
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<Source, Target> OctetsInto<Target> for Sourcewhere
Target: OctetsFrom<Source>,
impl<Source, Target> OctetsInto<Target> for Sourcewhere
Target: OctetsFrom<Source>,
type Error = <Target as OctetsFrom<Source>>::Error
source§fn try_octets_into(
self,
) -> Result<Target, <Source as OctetsInto<Target>>::Error>
fn try_octets_into( self, ) -> Result<Target, <Source as OctetsInto<Target>>::Error>
Performs the conversion.
source§fn octets_into(self) -> Target
fn octets_into(self) -> Target
Performs an infallible conversion.