pub struct UndoObjectResult {
pub key: String,
pub plan: Option<UndoPlanItem>,
pub outcome: UndoOutcome,
}Expand description
Per-object result that retains the exact plan used for execution.
Fields§
§key: StringObject key represented by this result.
plan: Option<UndoPlanItem>Planned action and expected-current precondition, when planning succeeded.
outcome: UndoOutcomePlanning or execution result.
Trait Implementations§
Source§impl Clone for UndoObjectResult
impl Clone for UndoObjectResult
Source§fn clone(&self) -> UndoObjectResult
fn clone(&self) -> UndoObjectResult
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 UndoObjectResult
impl Debug for UndoObjectResult
Source§impl<'de> Deserialize<'de> for UndoObjectResult
impl<'de> Deserialize<'de> for UndoObjectResult
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 UndoObjectResult
Source§impl PartialEq for UndoObjectResult
impl PartialEq for UndoObjectResult
Source§impl Serialize for UndoObjectResult
impl Serialize for UndoObjectResult
impl StructuralPartialEq for UndoObjectResult
Auto Trait Implementations§
impl Freeze for UndoObjectResult
impl RefUnwindSafe for UndoObjectResult
impl Send for UndoObjectResult
impl Sync for UndoObjectResult
impl Unpin for UndoObjectResult
impl UnsafeUnpin for UndoObjectResult
impl UnwindSafe for UndoObjectResult
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