pub struct IntrospectionRequest<'a, TE, TIR, TT>{ /* private fields */ }
Expand description

A request to introspect an access token.

See https://tools.ietf.org/html/rfc7662#section-2.1.

Implementations§

source§

impl<'a, TE, TIR, TT> IntrospectionRequest<'a, TE, TIR, TT>
where TE: ErrorResponse + 'static, TIR: TokenIntrospectionResponse<TT>, TT: TokenType,

source

pub fn set_token_type_hint<V>( self, value: V ) -> IntrospectionRequest<'a, TE, TIR, TT>
where V: Into<Cow<'a, str>>,

Sets the optional token_type_hint parameter.

See https://tools.ietf.org/html/rfc7662#section-2.1.

OPTIONAL. A hint about the type of the token submitted for introspection. The protected resource MAY pass this parameter to help the authorization server optimize the token lookup. If the server is unable to locate the token using the given hint, it MUST extend its search across all of its supported token types. An authorization server MAY ignore this parameter, particularly if it is able to detect the token type automatically. Values for this field are defined in the “OAuth Token Type Hints” registry defined in OAuth Token Revocation RFC7009.

source

pub fn add_extra_param<N, V>( self, name: N, value: V ) -> IntrospectionRequest<'a, TE, TIR, TT>
where N: Into<Cow<'a, str>>, V: Into<Cow<'a, str>>,

Appends an extra param to the token introspection request.

This method allows extensions to be used without direct support from this crate. If name conflicts with a parameter managed by this crate, the behavior is undefined. In particular, do not set parameters defined by RFC 6749 or RFC 7662.

§Security Warning

Callers should follow the security recommendations for any OAuth2 extensions used with this function, which are beyond the scope of RFC 6749.

source

pub fn request<F, RE>( self, http_client: F ) -> Result<TIR, RequestTokenError<RE, TE>>
where F: FnOnce(HttpRequest) -> Result<HttpResponse, RE>, RE: Error + 'static,

Synchronously sends the request to the authorization server and awaits a response.

source

pub async fn request_async<C, F, RE>( self, http_client: C ) -> Result<TIR, RequestTokenError<RE, TE>>
where C: FnOnce(HttpRequest) -> F, F: Future<Output = Result<HttpResponse, RE>>, RE: Error + 'static,

Asynchronously sends the request to the authorization server and returns a Future.

Trait Implementations§

source§

impl<'a, TE, TIR, TT> Debug for IntrospectionRequest<'a, TE, TIR, TT>

source§

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

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<'a, TE, TIR, TT> RefUnwindSafe for IntrospectionRequest<'a, TE, TIR, TT>

§

impl<'a, TE, TIR, TT> Send for IntrospectionRequest<'a, TE, TIR, TT>
where TE: Send, TIR: Send, TT: Send,

§

impl<'a, TE, TIR, TT> Sync for IntrospectionRequest<'a, TE, TIR, TT>
where TE: Sync, TIR: Sync, TT: Sync,

§

impl<'a, TE, TIR, TT> Unpin for IntrospectionRequest<'a, TE, TIR, TT>
where TE: Unpin, TIR: Unpin, TT: Unpin,

§

impl<'a, TE, TIR, TT> UnwindSafe for IntrospectionRequest<'a, TE, TIR, TT>
where TE: UnwindSafe, TIR: UnwindSafe, TT: UnwindSafe,

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.

§

impl<T> Instrument for T

§

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

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

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> Same for T

§

type Output = T

Should always be Self
source§

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

§

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

§

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

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

§

fn vzip(self) -> V

§

impl<T> WithSubscriber for T

§

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
§

fn with_current_subscriber(self) -> WithDispatch<Self>

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