pub enum ReportPeriod {
LastDays(i64),
AllTime,
}Variants§
Trait Implementations§
Source§impl Clone for ReportPeriod
impl Clone for ReportPeriod
Source§fn clone(&self) -> ReportPeriod
fn clone(&self) -> ReportPeriod
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 moreimpl Copy for ReportPeriod
Source§impl Debug for ReportPeriod
impl Debug for ReportPeriod
impl Eq for ReportPeriod
Source§impl PartialEq for ReportPeriod
impl PartialEq for ReportPeriod
Source§fn eq(&self, other: &ReportPeriod) -> bool
fn eq(&self, other: &ReportPeriod) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ReportPeriod
Auto Trait Implementations§
impl Freeze for ReportPeriod
impl RefUnwindSafe for ReportPeriod
impl Send for ReportPeriod
impl Sync for ReportPeriod
impl Unpin for ReportPeriod
impl UnsafeUnpin for ReportPeriod
impl UnwindSafe for ReportPeriod
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