[][src]Struct semanticscholar::Work

pub struct Work {
    pub arxiv_id: Option<String>,
    pub authors: Vec<Author>,
    pub citation_velocity: Option<u64>,
    pub citations: Vec<Work>,
    pub doi: Option<String>,
    pub influential_citation_count: Option<u64>,
    pub paper_id: Option<String>,
    pub references: Vec<Work>,
    pub title: Option<String>,
    pub topics: Vec<Topic>,
    pub url: Option<String>,
    pub venue: Option<String>,
    pub year: Option<u64>,
}

Implements a work (=paper)

Fields

arxiv_id: Option<String>authors: Vec<Author>citation_velocity: Option<u64>citations: Vec<Work>doi: Option<String>influential_citation_count: Option<u64>paper_id: Option<String>references: Vec<Work>title: Option<String>topics: Vec<Topic>url: Option<String>venue: Option<String>year: Option<u64>

Methods

impl Work[src]

Trait Implementations

impl Clone for Work[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for Work[src]

Auto Trait Implementations

impl Send for Work

impl Sync for Work

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Erased for T