vstorage::sync::plan

Enum ItemAction

Source
pub enum ItemAction<I: Item> {
    SaveToStatus {
        a: ItemRef,
        b: ItemRef,
        uid: String,
        hash: ItemHash,
    },
    UpdateStatus {
        hash: ItemHash,
        old: (ItemRef, ItemRef),
        new: (ItemRef, ItemRef),
    },
    ClearStatus {
        uid: String,
    },
    Create {
        side: Side,
        source: ItemState<I>,
    },
    Update {
        side: Side,
        source: ItemState<I>,
        target: ItemRef,
        old: (ItemRef, ItemRef),
    },
    Delete {
        side: Side,
        target: ItemRef,
        uid: String,
    },
    Conflict {
        a: ItemState<I>,
        b: ItemState<I>,
        old: Option<(ItemRef, ItemRef)>,
    },
}
Expand description

Operation to execute on an item during synchronising.

These actions contain all data necessary to execute them and update the status database. They only lack a MappingUid, since this may be resolved at execution time (e.g.: if the collection does not exist).

Variants§

§

SaveToStatus

Item is new and identical on both sides.

Fields

§hash: ItemHash
§

UpdateStatus

Update the status DB.

Item has changed on both sides, but remains in sync. The old field contains data to update the status db atomically.

Fields

§hash: ItemHash
§

ClearStatus

Item is gone from both sides but still present in status db.

Fields

§

Create

Fields

§side: Side
§source: ItemState<I>
§

Update

Update an item with data from the other side.

The old field contains data to update the status db atomically.

Fields

§side: Side
§source: ItemState<I>
§target: ItemRef
§

Delete

Fields

§side: Side
§target: ItemRef
§

Conflict

Item is in conflict which needs to be resolved externally.

Implementations§

Source§

impl<I: Item> ItemAction<I>

Source

pub fn keep_a(self) -> Self

If this item is a conflict, rewrite the action to keep data from side A.

Source

pub fn keep_b(self) -> Self

If this item is a conflict, rewrite the action to keep data from side B.

Trait Implementations§

Source§

impl<I: Clone + Item> Clone for ItemAction<I>

Source§

fn clone(&self) -> ItemAction<I>

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<I: Debug + Item> Debug for ItemAction<I>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<I: Item> Display for ItemAction<I>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

This function is mostly implemented to be used for error reporting.

Source§

impl<I: PartialEq + Item> PartialEq for ItemAction<I>

Source§

fn eq(&self, other: &ItemAction<I>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<I: Item> StructuralPartialEq for ItemAction<I>

Auto Trait Implementations§

§

impl<I> Freeze for ItemAction<I>
where I: Freeze,

§

impl<I> RefUnwindSafe for ItemAction<I>
where I: RefUnwindSafe,

§

impl<I> Send for ItemAction<I>

§

impl<I> Sync for ItemAction<I>

§

impl<I> Unpin for ItemAction<I>
where I: Unpin,

§

impl<I> UnwindSafe for ItemAction<I>
where I: UnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<Source, Target> OctetsInto<Target> for Source
where Target: OctetsFrom<Source>,

Source§

type Error = <Target as OctetsFrom<Source>>::Error

Source§

fn try_octets_into( self, ) -> Result<Target, <Source as OctetsInto<Target>>::Error>

Performs the conversion.
Source§

fn octets_into(self) -> Target
where Self::Error: Into<Infallible>,

Performs an infallible conversion.
Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more