pub struct RunnerStatus {
pub plan: String,
pub status: String,
pub current_phase: Option<String>,
pub completed: Vec<String>,
pub failed: Vec<String>,
pub updated_at: String,
}Expand description
Lightweight status file for external tools to poll.
Fields§
§plan: String§status: String§current_phase: Option<String>§completed: Vec<String>§failed: Vec<String>§updated_at: StringTrait Implementations§
Source§impl Debug for RunnerStatus
impl Debug for RunnerStatus
Auto Trait Implementations§
impl Freeze for RunnerStatus
impl RefUnwindSafe for RunnerStatus
impl Send for RunnerStatus
impl Sync for RunnerStatus
impl Unpin for RunnerStatus
impl UnsafeUnpin for RunnerStatus
impl UnwindSafe for RunnerStatus
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