[][src]Struct tame_oauth::gcp::ServiceAccountInfo

pub struct ServiceAccountInfo {
    pub private_key: String,
    pub client_email: String,
    pub token_uri: String,
}

Minimal parts needed from a GCP service acccount key for token acquisition

Fields

private_key: String

The private key we use to sign

client_email: String

The unique id used as the issuer of the JWT claim

token_uri: String

The URI we send the token requests to, eg https://oauth2.googleapis.com/token

Implementations

impl ServiceAccountInfo[src]

pub fn deserialize<T>(key_data: T) -> Result<Self, Error> where
    T: AsRef<[u8]>, 
[src]

Deserializes service account from a byte slice. This data is typically acquired by reading a service account JSON file from disk

Trait Implementations

impl Clone for ServiceAccountInfo[src]

impl Debug for ServiceAccountInfo[src]

impl<'de> Deserialize<'de> for ServiceAccountInfo[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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