pub struct ReportOptions {
pub since: Option<String>,
pub until: Option<String>,
pub agent: AgentFilter,
}Expand description
Filtering options shared by the report builders.
Fields§
§since: Option<String>Inclusive lower bound, normalized YYYY-MM-DD (or None).
until: Option<String>Inclusive upper bound, normalized YYYY-MM-DD (or None).
agent: AgentFilterTrait Implementations§
Source§impl Clone for ReportOptions
impl Clone for ReportOptions
Source§fn clone(&self) -> ReportOptions
fn clone(&self) -> ReportOptions
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 ReportOptions
impl Debug for ReportOptions
Source§impl Default for ReportOptions
impl Default for ReportOptions
Source§fn default() -> ReportOptions
fn default() -> ReportOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ReportOptions
impl RefUnwindSafe for ReportOptions
impl Send for ReportOptions
impl Sync for ReportOptions
impl Unpin for ReportOptions
impl UnsafeUnpin for ReportOptions
impl UnwindSafe for ReportOptions
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