[][src]Struct crossref::WorksCombined

pub struct WorksCombined {
    pub id: String,
    pub query: WorksQuery,
}

Target Works as secondary resource component

Example

This code runs with edition 2018
use crossref::{WorksCombined,WorksQuery};

let combined = WorksCombined::new("100000015", WorksQuery::new().query("ontologies"));

helper struct to capture an id for a Component other than /works and an additional query for the /works route

Fields

id: String

the id of an component item other than Component::Works

query: WorksQuery

the query to filter the works results

Methods

impl WorksCombined[src]

pub fn new(id: &str, query: WorksQuery) -> Self[src]

create a WorksCombined instance

Trait Implementations

impl Clone for WorksCombined[src]

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

Performs copy-assignment from source. Read more

impl Debug for WorksCombined[src]

impl Serialize for WorksCombined[src]

impl<'de> Deserialize<'de> for WorksCombined[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From<T> for T[src]

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

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> 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> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 

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