pub struct SessionWorkflowGetRunProgressResult {
pub has_more_newer: bool,
pub has_more_older: bool,
pub newest_seq: Option<i64>,
pub oldest_seq: Option<i64>,
pub records: Vec<WorkflowProgressLine>,
pub revision: i64,
}Expand description
A bidirectional page of workflow progress.
Experimental. This type is part of an experimental wire-protocol surface and may change or be removed in future SDK or CLI releases.
Fields§
§has_more_newer: boolWhether progress records newer than this page exist.
has_more_older: boolWhether progress records older than this page exist.
newest_seq: Option<i64>Newest sequence number in this page, or null when empty.
oldest_seq: Option<i64>Oldest sequence number in this page, or null when empty.
records: Vec<WorkflowProgressLine>Progress records in sequence order.
revision: i64Run revision reflected by this page.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for SessionWorkflowGetRunProgressResult
impl<'de> Deserialize<'de> for SessionWorkflowGetRunProgressResult
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 SessionWorkflowGetRunProgressResult
impl RefUnwindSafe for SessionWorkflowGetRunProgressResult
impl Send for SessionWorkflowGetRunProgressResult
impl Sync for SessionWorkflowGetRunProgressResult
impl Unpin for SessionWorkflowGetRunProgressResult
impl UnsafeUnpin for SessionWorkflowGetRunProgressResult
impl UnwindSafe for SessionWorkflowGetRunProgressResult
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