pub struct ArxivQuery {
pub base_url: String,
pub search_query: String,
pub id_list: String,
pub start: Option<i32>,
pub max_results: Option<i32>,
pub sort_by: String,
pub sort_order: String,
}
Expand description
A structure that stores the query information.
Fields§
§base_url: String
§search_query: String
§id_list: String
§start: Option<i32>
§max_results: Option<i32>
§sort_by: String
§sort_order: String
Implementations§
Trait Implementations§
Source§impl Clone for ArxivQuery
impl Clone for ArxivQuery
Source§fn clone(&self) -> ArxivQuery
fn clone(&self) -> ArxivQuery
Returns a duplicate of the value. Read more
1.0.0 · 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 ArxivQuery
impl Debug for ArxivQuery
Source§impl PartialEq for ArxivQuery
impl PartialEq for ArxivQuery
impl Eq for ArxivQuery
impl StructuralPartialEq for ArxivQuery
Auto Trait Implementations§
impl Freeze for ArxivQuery
impl RefUnwindSafe for ArxivQuery
impl Send for ArxivQuery
impl Sync for ArxivQuery
impl Unpin for ArxivQuery
impl UnwindSafe for ArxivQuery
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.