pub struct GraphCheckpoint {
pub graph_name: String,
pub state: SequentialGraphState,
pub steps: Vec<StepRun>,
pub sync_points: Vec<FanoutReceiptSyncPoint>,
pub journal: ExecutionJournal,
}Fields§
§graph_name: String§state: SequentialGraphState§steps: Vec<StepRun>§sync_points: Vec<FanoutReceiptSyncPoint>§journal: ExecutionJournalTrait Implementations§
Source§impl Clone for GraphCheckpoint
impl Clone for GraphCheckpoint
Source§fn clone(&self) -> GraphCheckpoint
fn clone(&self) -> GraphCheckpoint
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 GraphCheckpoint
impl Debug for GraphCheckpoint
Source§impl<'de> Deserialize<'de> for GraphCheckpoint
impl<'de> Deserialize<'de> for GraphCheckpoint
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
Auto Trait Implementations§
impl Freeze for GraphCheckpoint
impl RefUnwindSafe for GraphCheckpoint
impl Send for GraphCheckpoint
impl Sync for GraphCheckpoint
impl Unpin for GraphCheckpoint
impl UnsafeUnpin for GraphCheckpoint
impl UnwindSafe for GraphCheckpoint
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