pub struct WorkflowLogLine {
pub kind: WorkflowLogLineKind,
pub seq: i64,
pub text: String,
}Expand description
One ordered workflow progress line.
Experimental. This type is part of an experimental wire-protocol surface and may change or be removed in future SDK or CLI releases.
Fields§
§kind: WorkflowLogLineKindProgress line kind.
seq: i64Monotonic sequence number within the workflow run.
text: StringProgress text.
Trait Implementations§
Source§impl Clone for WorkflowLogLine
impl Clone for WorkflowLogLine
Source§impl Debug for WorkflowLogLine
impl Debug for WorkflowLogLine
Source§impl Default for WorkflowLogLine
impl Default for WorkflowLogLine
Source§impl<'de> Deserialize<'de> for WorkflowLogLine
impl<'de> Deserialize<'de> for WorkflowLogLine
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 WorkflowLogLine
impl RefUnwindSafe for WorkflowLogLine
impl Send for WorkflowLogLine
impl Sync for WorkflowLogLine
impl Unpin for WorkflowLogLine
impl UnsafeUnpin for WorkflowLogLine
impl UnwindSafe for WorkflowLogLine
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