[][src]Struct crossref::CrossrefBuilder

pub struct CrossrefBuilder { /* fields omitted */ }

A CrossrefBuilder can be used to create Crossref with additional config.

Example

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

let client = Crossref::builder()
    .polite("polite@example.com")
    .token("your token")
    .build()?;

Methods

impl CrossrefBuilder[src]

pub fn new() -> CrossrefBuilder[src]

Constructs a new CrossrefBuilder.

This is the same as Crossref::builder().

pub fn polite(self, email: &str) -> Self[src]

be polite and set your email as User-Agent will get you in the polite pool of crossref

pub fn user_agent(self, user_agent: &str) -> Self[src]

set the user agent directly

pub fn token(self, token: &str) -> Self[src]

set a crossref plus service API token

pub fn build(self) -> Result<Crossref>[src]

Returns a Crossref that uses this CrossrefBuilder configuration.

Errors

This will fail if TLS backend cannot be initialized see reqwest::ClientBuilder::build

Trait Implementations

impl Default for CrossrefBuilder[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, 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> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<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