pub struct StageOrder {
pub run_id: String,
pub stage: String,
pub attempt: u32,
pub execution: StageExecution,
pub worktree: PathBuf,
pub branch: String,
pub output_path: PathBuf,
}Fields§
§run_id: String§stage: String§attempt: u32Which execution of stage this order is. A backward edge re-runs a
stage, so everything the execution produces — captured output above
all — is tagged with the attempt as well as the name.
execution: StageExecution§worktree: PathBuf§branch: String§output_path: PathBufTrait Implementations§
Source§impl Clone for StageOrder
impl Clone for StageOrder
Source§fn clone(&self) -> StageOrder
fn clone(&self) -> StageOrder
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 moreAuto Trait Implementations§
impl Freeze for StageOrder
impl RefUnwindSafe for StageOrder
impl Send for StageOrder
impl Sync for StageOrder
impl Unpin for StageOrder
impl UnsafeUnpin for StageOrder
impl UnwindSafe for StageOrder
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