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