pub enum PaperField {
Show 27 variants
PaperId,
Corpusid,
Url,
Title,
Abstract,
Venue,
PublicationVenue,
Year,
ReferenceCount,
CitationCount,
InfluentialCitationCount,
IsOpenAccess,
OpenAccessPdf,
FieldsOfStudy,
S2FieldsOfStudy,
PublicationTypes,
PublicationDate,
Journal,
CitationStyles,
Authors(Vec<AuthorField>),
Citations(Vec<PaperField>),
References(Vec<PaperField>),
Embedding,
Contexts,
Intents,
IsInfluential,
ContextsWithIntent,
}
Variants§
PaperId
Corpusid
Url
Title
Abstract
Venue
PublicationVenue
Year
ReferenceCount
CitationCount
InfluentialCitationCount
IsOpenAccess
OpenAccessPdf
FieldsOfStudy
S2FieldsOfStudy
PublicationTypes
PublicationDate
Journal
CitationStyles
Authors(Vec<AuthorField>)
Citations(Vec<PaperField>)
References(Vec<PaperField>)
Embedding
Contexts
Intents
IsInfluential
ContextsWithIntent
Implementations§
Trait Implementations§
Source§impl Clone for PaperField
impl Clone for PaperField
Source§fn clone(&self) -> PaperField
fn clone(&self) -> PaperField
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 PaperField
impl Debug for PaperField
Source§impl Default for PaperField
impl Default for PaperField
Source§fn default() -> PaperField
fn default() -> PaperField
Returns the “default value” for a type. Read more
Source§impl PartialEq for PaperField
impl PartialEq for PaperField
impl StructuralPartialEq for PaperField
Auto Trait Implementations§
impl Freeze for PaperField
impl RefUnwindSafe for PaperField
impl Send for PaperField
impl Sync for PaperField
impl Unpin for PaperField
impl UnwindSafe for PaperField
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