core_api_client 1.1.0

A Rust library for interacting with CORE API, a service that provides access to metadata and full texts of research papers from thousands of data providers.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14

use serde::{Deserialize, Serialize};


/// Struct holds the information of the discovoered resource. More info on the work struct [here](https://api.core.ac.uk/docs/v3#tag/Discovery).
#[derive(Debug, Deserialize, Serialize, PartialEq, PartialOrd, Hash, Default)]
pub struct Discovery {
    /// Url link to the full text of the discovered source
    #[serde(rename = "fullTextLink")]
    pub full_text_link: String,
        
    /// Discovered rource
    pub source: String,
}