pub struct RawRangeOptions {
pub start: Option<String>,
pub end: Option<String>,
pub all: bool,
pub today: bool,
pub yesterday: bool,
pub month: bool,
pub last: Option<String>,
}Fields§
§start: Option<String>§end: Option<String>§all: bool§today: bool§yesterday: bool§month: bool§last: Option<String>Trait Implementations§
Source§impl Clone for RawRangeOptions
impl Clone for RawRangeOptions
Source§fn clone(&self) -> RawRangeOptions
fn clone(&self) -> RawRangeOptions
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 RawRangeOptions
impl Debug for RawRangeOptions
Source§impl Default for RawRangeOptions
impl Default for RawRangeOptions
Source§fn default() -> RawRangeOptions
fn default() -> RawRangeOptions
Returns the “default value” for a type. Read more
Source§impl PartialEq for RawRangeOptions
impl PartialEq for RawRangeOptions
Source§fn eq(&self, other: &RawRangeOptions) -> bool
fn eq(&self, other: &RawRangeOptions) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for RawRangeOptions
impl StructuralPartialEq for RawRangeOptions
Auto Trait Implementations§
impl Freeze for RawRangeOptions
impl RefUnwindSafe for RawRangeOptions
impl Send for RawRangeOptions
impl Sync for RawRangeOptions
impl Unpin for RawRangeOptions
impl UnsafeUnpin for RawRangeOptions
impl UnwindSafe for RawRangeOptions
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