[][src]Struct questrade_rs::AuthenticationInfo

pub struct AuthenticationInfo {
    pub refresh_token: String,
    pub access_token: String,
    pub expires_at: Instant,
    pub api_server: String,
    pub is_demo: bool,
}

Authentication token information.

Fields

refresh_token: String

Token used to refresh access token.

access_token: String

Token to use for queries.

expires_at: Instant

Timestamp when access token expires.

api_server: String

API server to connect to for queries.

is_demo: bool

Flag to indicate a practice account is in used.

Implementations

impl AuthenticationInfo[src]

pub async fn authenticate<'_, '_>(
    refresh_token: &'_ str,
    is_demo: bool,
    client: &'_ Client
) -> Result<AuthenticationInfo, Box<dyn Error>>
[src]

Authenticates using the specified token and client

Trait Implementations

impl Clone for AuthenticationInfo[src]

impl Debug for AuthenticationInfo[src]

impl PartialEq<AuthenticationInfo> for AuthenticationInfo[src]

impl StructuralPartialEq for AuthenticationInfo[src]

Auto Trait Implementations

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> Instrument for T[src]

impl<T> Instrument 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.