Struct gcp_sa::GoogleServiceAccountAuthenticator[][src]

pub struct GoogleServiceAccountAuthenticator { /* fields omitted */ }

Authenticator service that ingest a Service Account JSON key file and communicates with Google’s authentication API to exchange it into a access token or an id token.

Implementations

impl GoogleServiceAccountAuthenticator[src]

pub fn new_from_service_account_key_file(
    keyfile: &Path
) -> Result<GoogleServiceAccountAuthenticator>
[src]

Function that builds new authenticator struct that later can be used to communicate with Google’s authentication API.

pub async fn request_access_token(&mut self) -> Result<GoogleAccessToken>[src]

Request Access Token from Google’s authentication API

pub async fn request_id_token(&mut self, scope: String) -> Result<GoogleIDToken>[src]

Request ID Token (JWT) from Google’s authentication API

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, 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<V, T> VZip<V> for T where
    V: MultiLane<T>,