[][src]Struct paypal_rs::Client

pub struct Client<'a> {
    pub client: Client,
    pub sandbox: bool,
    pub auth: Auth<'a>,
}

Fields

client: Clientsandbox: boolauth: Auth<'a>

Implementations

impl<'a> Client<'a>[src]

pub fn new(client_id: &'a str, secret: &'a str, sandbox: bool) -> Client<'a>[src]

pub async fn get_access_token<'_>(&'_ mut self) -> Result<(), Box<dyn Error>>[src]

Trait Implementations

impl<'a> Debug for Client<'a>[src]

Auto Trait Implementations

impl<'a> !RefUnwindSafe for Client<'a>

impl<'a> Send for Client<'a>

impl<'a> Sync for Client<'a>

impl<'a> Unpin for Client<'a>

impl<'a> !UnwindSafe for Client<'a>

Blanket Implementations

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

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

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

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.