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