pub struct BashTaskRow {Show 19 fields
pub harness: String,
pub session_id: String,
pub task_id: String,
pub project_key: String,
pub command: String,
pub cwd: String,
pub status: String,
pub exit_code: Option<i32>,
pub pid: Option<i64>,
pub pgid: Option<i64>,
pub started_at: i64,
pub completed_at: Option<i64>,
pub stdout_path: Option<String>,
pub stderr_path: Option<String>,
pub compressed: bool,
pub timeout_ms: Option<i64>,
pub completion_delivered: bool,
pub output_bytes: Option<i64>,
pub metadata: String,
}Fields§
§harness: String§session_id: String§task_id: String§project_key: String§command: String§cwd: String§status: String§exit_code: Option<i32>§pid: Option<i64>§pgid: Option<i64>§started_at: i64§completed_at: Option<i64>§stdout_path: Option<String>§stderr_path: Option<String>§compressed: bool§timeout_ms: Option<i64>§completion_delivered: bool§output_bytes: Option<i64>§metadata: StringTrait Implementations§
Source§impl Clone for BashTaskRow
impl Clone for BashTaskRow
Source§fn clone(&self) -> BashTaskRow
fn clone(&self) -> BashTaskRow
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 BashTaskRow
impl Debug for BashTaskRow
Source§impl From<BashTaskRow> for PersistedTask
impl From<BashTaskRow> for PersistedTask
Source§fn from(row: BashTaskRow) -> Self
fn from(row: BashTaskRow) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for BashTaskRow
impl RefUnwindSafe for BashTaskRow
impl Send for BashTaskRow
impl Sync for BashTaskRow
impl Unpin for BashTaskRow
impl UnsafeUnpin for BashTaskRow
impl UnwindSafe for BashTaskRow
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more