pub struct LimitResetsReport {
pub status: String,
pub start: DateTime<Utc>,
pub end: DateTime<Utc>,
pub sessions_dir: String,
pub early_only: bool,
pub resets: Vec<LimitResetEvent>,
pub diagnostics: Option<LimitReportDiagnostics>,
}Fields§
§status: String§start: DateTime<Utc>§end: DateTime<Utc>§sessions_dir: String§early_only: bool§resets: Vec<LimitResetEvent>§diagnostics: Option<LimitReportDiagnostics>Trait Implementations§
Source§impl Clone for LimitResetsReport
impl Clone for LimitResetsReport
Source§fn clone(&self) -> LimitResetsReport
fn clone(&self) -> LimitResetsReport
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 LimitResetsReport
impl Debug for LimitResetsReport
Source§impl PartialEq for LimitResetsReport
impl PartialEq for LimitResetsReport
Source§fn eq(&self, other: &LimitResetsReport) -> bool
fn eq(&self, other: &LimitResetsReport) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for LimitResetsReport
impl Serialize for LimitResetsReport
impl StructuralPartialEq for LimitResetsReport
Auto Trait Implementations§
impl Freeze for LimitResetsReport
impl RefUnwindSafe for LimitResetsReport
impl Send for LimitResetsReport
impl Sync for LimitResetsReport
impl Unpin for LimitResetsReport
impl UnsafeUnpin for LimitResetsReport
impl UnwindSafe for LimitResetsReport
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