[][src]Struct firestore_db_and_auth::sessions::service_account::Session

pub struct Session {
    pub credentials: Credentials,
    // some fields omitted
}

Service account session

Fields

credentials: Credentials

Methods

impl Session[src]

pub fn new(credentials: Credentials) -> Result<Session>[src]

You need a service account credentials file, provided by the Google Cloud console.

The service account session can be used to interact with the FireStore API as well as FireBase Auth.

A custom jwt is created and signed with the service account private key. This jwt is used as bearer token.

See https://developers.google.com/identity/protocols/OAuth2ServiceAccount

Trait Implementations

impl<'a> FirebaseAuthBearer<'a> for Session[src]

fn bearer(&'a self) -> String[src]

Return the encoded jwt to be used as bearer token. If the jwt issue_at is older than 50 mins, it will be updated to the current time.

impl Serialize for Session[src]

impl<'de> Deserialize<'de> for Session[src]

Auto Trait Implementations

impl Send for Session

impl Unpin for Session

impl !Sync for Session

impl UnwindSafe for Session

impl !RefUnwindSafe for Session

Blanket Implementations

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.

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

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

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

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 

type Err = <U as TryFrom<T>>::Err

impl<T> Typeable for T where
    T: Any

fn get_type(&self) -> TypeId

Get the TypeId of this object.

impl<T> IntoCollection<T> for T

impl<T, I> AsResult<T, I> for T where
    I: Input,