[][src]Struct crossref::WorksIdentQuery

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

Target Works as secondary resource component

Example

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

let combined = WorksIdentQuery::new("100000015", WorksQuery::new("ontologies"));

Is equal to create a WorksIdentQuery from a WorksQuery

This code runs with edition 2018
use crossref::WorksQuery;

let combined = WorksQuery::new("ontologies").into_ident("100000015");

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

query: WorksQuery

the query to filter the works results

Methods

impl WorksIdentQuery[src]

pub fn new<T: Into<String>>(id: T, query: WorksQuery) -> Self[src]

create a new Ident Query for the id

Trait Implementations

impl Clone for WorksIdentQuery[src]

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

Performs copy-assignment from source. Read more

impl Debug for WorksIdentQuery[src]

Auto Trait Implementations

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

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

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> Erased for T

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

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