pub enum UndoOutcome {
Planned,
DeleteMarkerRemoved,
VersionRestored {
created_version_id: Option<String>,
},
Failed {
error_type: String,
message: String,
blocked_version_id: Option<String>,
},
}Expand description
Result state for one planned object.
Variants§
Planned
The action was selected but not executed.
DeleteMarkerRemoved
The exact delete marker was removed.
VersionRestored
A historical data version was copied into a new current version.
Fields
Failed
Execution was refused or failed.
Trait Implementations§
Source§impl Clone for UndoOutcome
impl Clone for UndoOutcome
Source§fn clone(&self) -> UndoOutcome
fn clone(&self) -> UndoOutcome
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 UndoOutcome
impl Debug for UndoOutcome
Source§impl<'de> Deserialize<'de> for UndoOutcome
impl<'de> Deserialize<'de> for UndoOutcome
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 UndoOutcome
Source§impl PartialEq for UndoOutcome
impl PartialEq for UndoOutcome
Source§impl Serialize for UndoOutcome
impl Serialize for UndoOutcome
impl StructuralPartialEq for UndoOutcome
Auto Trait Implementations§
impl Freeze for UndoOutcome
impl RefUnwindSafe for UndoOutcome
impl Send for UndoOutcome
impl Sync for UndoOutcome
impl Unpin for UndoOutcome
impl UnsafeUnpin for UndoOutcome
impl UnwindSafe for UndoOutcome
Blanket Implementations§
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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