pub struct LogLine {
pub run_id: Uuid,
pub step_id: Uuid,
pub step_name: Arc<str>,
pub stream: LogStream,
pub line: String,
pub at: DateTime<Utc>,
}Expand description
A single log line emitted during step execution.
Fields§
§run_id: UuidRun that owns this step.
step_id: UuidStep that produced the line.
step_name: Arc<str>Human-readable step name (shared across lines from the same step).
stream: LogStreamOutput stream (stdout, stderr, or system).
line: StringThe line content.
at: DateTime<Utc>When the line was emitted.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for LogLine
impl RefUnwindSafe for LogLine
impl Send for LogLine
impl Sync for LogLine
impl Unpin for LogLine
impl UnsafeUnpin for LogLine
impl UnwindSafe for LogLine
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