[][src]Struct qonfucius_sso_utility::Token

pub struct Token {
    pub token: String,
    pub expires_in: u64,
    pub scope: HashMap<String, Vec<String>>,
    pub user: User,
}

Representation of the SSO response on a successful token verification

Fields

token: String

The verified token

expires_in: u64

The expiration timestamp from now

scope: HashMap<String, Vec<String>>

The authorized domains and scopes for this token

user: User

The authenticated user

Implementations

impl Token[src]

pub fn parse_scope<T: Clone + Debug + Eq + Hash + FromStr<Err = UtilityError>>(
    &self
) -> Result<Scope<T>, UtilityError>
[src]

Transforms the received scopes to a single parsed Scope<T> to be used and verified

pub async fn verify_token<'_>(token: &'_ str) -> Result<Self, UtilityError>[src]

Calls the SSO API (set the SSO_URI env var) to verify token and will return a Token instance on success.

Trait Implementations

impl Clone for Token[src]

impl Debug for Token[src]

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

impl Serialize for Token[src]

Auto Trait Implementations

impl RefUnwindSafe for Token

impl Send for Token

impl Sync for Token

impl Unpin for Token

impl UnwindSafe for Token

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