pub struct IntrospectionRequest {
pub token: String,
pub token_type_hint: Option<String>,
}Expand description
Token introspection request per RFC 7662 Section 2.1
Fields§
§token: StringThe token to introspect (REQUIRED)
token_type_hint: Option<String>Hint about token type (access_token or refresh_token)
Trait Implementations§
Source§impl Clone for IntrospectionRequest
impl Clone for IntrospectionRequest
Source§fn clone(&self) -> IntrospectionRequest
fn clone(&self) -> IntrospectionRequest
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for IntrospectionRequest
impl Debug for IntrospectionRequest
Auto Trait Implementations§
impl Freeze for IntrospectionRequest
impl RefUnwindSafe for IntrospectionRequest
impl Send for IntrospectionRequest
impl Sync for IntrospectionRequest
impl Unpin for IntrospectionRequest
impl UnwindSafe for IntrospectionRequest
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more