pub struct PaperQuery {
pub query: Option<String>,
pub category: Option<String>,
pub since: Option<String>,
pub from: Option<NaiveDate>,
pub to: Option<NaiveDate>,
}Fields§
§query: Option<String>§category: Option<String>§since: Option<String>§from: Option<NaiveDate>§to: Option<NaiveDate>Trait Implementations§
Source§impl Clone for PaperQuery
impl Clone for PaperQuery
Source§fn clone(&self) -> PaperQuery
fn clone(&self) -> PaperQuery
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 PaperQuery
impl Debug for PaperQuery
Source§impl Default for PaperQuery
impl Default for PaperQuery
Source§fn default() -> PaperQuery
fn default() -> PaperQuery
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for PaperQuery
impl RefUnwindSafe for PaperQuery
impl Send for PaperQuery
impl Sync for PaperQuery
impl Unpin for PaperQuery
impl UnsafeUnpin for PaperQuery
impl UnwindSafe for PaperQuery
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