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