zino_auth

Struct ClientCredentials

Source
pub struct ClientCredentials<S: ?Sized> { /* private fields */ }
Expand description

Credentials for the client authentication.

Implementations§

Source§

impl<S: ?Sized> ClientCredentials<S>

Source

pub fn new( client_id: impl Into<SharedString>, client_secret: impl Into<SharedString>, ) -> Self

Creates a new instance.

Source

pub fn try_from_config(config: &'static Table) -> Result<Self, Error>

Attempts to create a new instance with the configuration.

Source

pub fn set_client_key(&mut self, client_key: impl Into<SharedString>)

Sets the client key.

Source

pub fn set_access_token(&self, access_token: impl ToString)

Sets the access token.

Source

pub fn set_expires(&self, expires_in: Duration)

Sets the expires.

Source

pub fn client_id(&self) -> &str

Returns the client ID.

Source

pub fn client_key(&self) -> &str

Returns the client key.

Source

pub fn client_secret(&self) -> &str

Returns the client secret.

Source

pub fn access_token(&self) -> String

Returns the access token regardless of whether it has expired.

Source

pub fn expires_at(&self) -> DateTime

Returns the time the client credentials expire at.

Source

pub fn expires_in(&self) -> Duration

Returns the time when the client credentials will expire in.

Source

pub fn is_expired(&self) -> bool

Returns true if the access token for the client credentials has expired.

Source

pub fn to_request_params(&self) -> Map

Converts self to the request params.

Source§

impl<S: ?Sized + AuthorizationProvider> ClientCredentials<S>

Source

pub async fn request(&self) -> Result<String, Error>

Requests an access token for the client credentials.

Trait Implementations§

Source§

impl<S: Debug + ?Sized> Debug for ClientCredentials<S>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<S> !Freeze for ClientCredentials<S>

§

impl<S> !RefUnwindSafe for ClientCredentials<S>

§

impl<S> Send for ClientCredentials<S>
where S: Send + ?Sized,

§

impl<S> Sync for ClientCredentials<S>
where S: Sync + ?Sized,

§

impl<S> Unpin for ClientCredentials<S>
where S: Unpin + ?Sized,

§

impl<S> UnwindSafe for ClientCredentials<S>
where S: UnwindSafe + ?Sized,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

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

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

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

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

impl<T> ErasedDestructor for T
where T: 'static,

Source§

impl<T> MaybeSendSync for T