pub struct WorkflowSummary {
pub workflow_id: String,
pub path: PathBuf,
pub script_path: Option<PathBuf>,
pub size_bytes: u64,
}Expand description
One workflow journal under a session’s subdirectory.
Fields§
§workflow_id: StringThe workflow run id (the journal file stem, e.g.
wf_a9a2673f-c5e).
path: PathBufPath to the journal .json.
script_path: Option<PathBuf>Path to the matching script under workflows/scripts/, when
one exists.
size_bytes: u64Journal file size in bytes.
Trait Implementations§
Source§impl Clone for WorkflowSummary
impl Clone for WorkflowSummary
Source§fn clone(&self) -> WorkflowSummary
fn clone(&self) -> WorkflowSummary
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 WorkflowSummary
impl Debug for WorkflowSummary
Auto Trait Implementations§
impl Freeze for WorkflowSummary
impl RefUnwindSafe for WorkflowSummary
impl Send for WorkflowSummary
impl Sync for WorkflowSummary
impl Unpin for WorkflowSummary
impl UnsafeUnpin for WorkflowSummary
impl UnwindSafe for WorkflowSummary
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