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