pub struct DiagnosticLastRound {
pub status: String,
pub started_at_ms: i64,
pub completed_at_ms: i64,
pub duration_ms: i64,
pub counters: Option<DiagnosticRoundCounters>,
pub error_code: Option<String>,
}Fields§
§status: String§started_at_ms: i64§completed_at_ms: i64§duration_ms: i64§counters: Option<DiagnosticRoundCounters>§error_code: Option<String>Trait Implementations§
Source§impl Clone for DiagnosticLastRound
impl Clone for DiagnosticLastRound
Source§fn clone(&self) -> DiagnosticLastRound
fn clone(&self) -> DiagnosticLastRound
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 DiagnosticLastRound
impl Debug for DiagnosticLastRound
impl Eq for DiagnosticLastRound
Source§impl PartialEq for DiagnosticLastRound
impl PartialEq for DiagnosticLastRound
Source§impl Serialize for DiagnosticLastRound
impl Serialize for DiagnosticLastRound
impl StructuralPartialEq for DiagnosticLastRound
Auto Trait Implementations§
impl Freeze for DiagnosticLastRound
impl RefUnwindSafe for DiagnosticLastRound
impl Send for DiagnosticLastRound
impl Sync for DiagnosticLastRound
impl Unpin for DiagnosticLastRound
impl UnsafeUnpin for DiagnosticLastRound
impl UnwindSafe for DiagnosticLastRound
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