pub struct JobHistoryEntry {
pub at: i64,
pub phase: String,
pub status: JobStatus,
pub progress: Option<u8>,
pub detail: Option<String>,
pub retry: JobRetryMetadata,
}Fields§
§at: i64§phase: String§status: JobStatus§progress: Option<u8>§detail: Option<String>§retry: JobRetryMetadataTrait Implementations§
Source§impl Clone for JobHistoryEntry
impl Clone for JobHistoryEntry
Source§fn clone(&self) -> JobHistoryEntry
fn clone(&self) -> JobHistoryEntry
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 JobHistoryEntry
impl RefUnwindSafe for JobHistoryEntry
impl Send for JobHistoryEntry
impl Sync for JobHistoryEntry
impl Unpin for JobHistoryEntry
impl UnsafeUnpin for JobHistoryEntry
impl UnwindSafe for JobHistoryEntry
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