[][src]Struct github_app_auth::InstallationAccessToken

pub struct InstallationAccessToken {
    pub client: Client,
    // some fields omitted
}

An installation access token is the primary method for authenticating with the GitHub API as an application.

Fields

client: Client

The reqwest::blocking::Client used to periodically refresh the token.

This is made public so that users of the library can re-use this client for sending requests, but this is not required.

Methods

impl InstallationAccessToken[src]

pub fn new(
    params: GithubAuthParams
) -> Result<InstallationAccessToken, AuthError>
[src]

Fetch an installation access token using the provided authentication parameters.

pub fn header(&mut self) -> Result<HeaderMap, AuthError>[src]

Get an HTTP authentication header for the installation access token.

This method is mutable because the installation access token must be periodically refreshed.

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, 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.