pub struct CheckpointPendingTask {
pub id: String,
pub node: String,
pub triggers: Vec<String>,
pub state_override: Option<Value>,
}Expand description
Pending task in checkpoint
Represents a task scheduled for execution in the next superstep.
Fields§
§id: StringUnique task identifier (UUID)
node: StringTarget node name to execute
triggers: Vec<String>Channels that triggered this task
state_override: Option<Value>Optional state override (used in Send API scenarios)
Trait Implementations§
Source§impl Clone for CheckpointPendingTask
impl Clone for CheckpointPendingTask
Source§fn clone(&self) -> CheckpointPendingTask
fn clone(&self) -> CheckpointPendingTask
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 CheckpointPendingTask
impl Debug for CheckpointPendingTask
Source§impl<'de> Deserialize<'de> for CheckpointPendingTask
impl<'de> Deserialize<'de> for CheckpointPendingTask
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 CheckpointPendingTask
impl RefUnwindSafe for CheckpointPendingTask
impl Send for CheckpointPendingTask
impl Sync for CheckpointPendingTask
impl Unpin for CheckpointPendingTask
impl UnsafeUnpin for CheckpointPendingTask
impl UnwindSafe for CheckpointPendingTask
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