pub struct DanglingSnapshot {
pub activities: Vec<String>,
pub effect_attempted: Vec<String>,
pub waits: Vec<String>,
pub wait_resolutions: Vec<String>,
pub cancels: Vec<String>,
}Fields§
§activities: Vec<String>§effect_attempted: Vec<String>§waits: Vec<String>§wait_resolutions: Vec<String>Activities where a wait resolution (waitResolved or waitDeadlineExceeded) was written but the terminal activity event (activitySucceeded / activityFailed) has not been written yet. These should be materialised by recovery/resume.
cancels: Vec<String>Trait Implementations§
Source§impl Clone for DanglingSnapshot
impl Clone for DanglingSnapshot
Source§fn clone(&self) -> DanglingSnapshot
fn clone(&self) -> DanglingSnapshot
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 DanglingSnapshot
impl Debug for DanglingSnapshot
Source§impl<'de> Deserialize<'de> for DanglingSnapshot
impl<'de> Deserialize<'de> for DanglingSnapshot
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 DanglingSnapshot
Source§impl PartialEq for DanglingSnapshot
impl PartialEq for DanglingSnapshot
Source§fn eq(&self, other: &DanglingSnapshot) -> bool
fn eq(&self, other: &DanglingSnapshot) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for DanglingSnapshot
impl Serialize for DanglingSnapshot
impl StructuralPartialEq for DanglingSnapshot
Auto Trait Implementations§
impl Freeze for DanglingSnapshot
impl RefUnwindSafe for DanglingSnapshot
impl Send for DanglingSnapshot
impl Sync for DanglingSnapshot
impl Unpin for DanglingSnapshot
impl UnsafeUnpin for DanglingSnapshot
impl UnwindSafe for DanglingSnapshot
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