pub struct HistoryRow {
pub name: String,
pub source: RunSource,
pub status: RunStatus,
pub exit_code: i32,
pub started_at: OffsetDateTime,
pub duration_ms: i64,
}Fields§
§name: String§source: RunSource§status: RunStatus§exit_code: i32§started_at: OffsetDateTime§duration_ms: i64Trait Implementations§
Source§impl Clone for HistoryRow
impl Clone for HistoryRow
Source§fn clone(&self) -> HistoryRow
fn clone(&self) -> HistoryRow
Returns a duplicate of the value. Read more
1.0.0 · 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 HistoryRow
impl RefUnwindSafe for HistoryRow
impl Send for HistoryRow
impl Sync for HistoryRow
impl Unpin for HistoryRow
impl UnsafeUnpin for HistoryRow
impl UnwindSafe for HistoryRow
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