pub struct Arxiv {
pub id: String,
pub updated: String,
pub published: String,
pub title: String,
pub summary: String,
pub authors: Vec<String>,
pub primary_category: String,
pub categories: Vec<String>,
pub pdf_url: String,
pub html_url: String,
pub comment: Option<String>,
}Expand description
A structure that stores the paper information.
Fields§
§id: String§updated: String§published: String§title: String§summary: String§primary_category: String§categories: Vec<String>§pdf_url: String§html_url: String§comment: Option<String>Implementations§
Trait Implementations§
impl Eq for Arxiv
impl StructuralPartialEq for Arxiv
Auto Trait Implementations§
impl Freeze for Arxiv
impl RefUnwindSafe for Arxiv
impl Send for Arxiv
impl Sync for Arxiv
impl Unpin for Arxiv
impl UnwindSafe for Arxiv
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.