[][src]Struct openapi_context::auth::Authorization

pub struct Authorization {
    pub subject: String,
    pub scopes: Scopes,
    pub issuer: Option<String>,
}

Storage of authorization parameters for an incoming request, used for REST API authorization.

Fields

subject: String

Subject for which authorization is granted (i.e., what may be accessed.)

scopes: Scopes

Scopes for which authorization is granted (i.e., what types of access are permitted).

issuer: Option<String>

Identity of the party to whom authorization was granted, if available (i.e., who is responsible for the access).

In an OAuth environment, this is the identity of the client which issued an authorization request to the resource owner (end-user), and which has been directly authorized by the resource owner to access the protected resource. If the client delegates that authorization to another service (e.g., a proxy or other delegate), the issuer is still the original client which was authorized by the resource owner.

Trait Implementations

impl Clone for Authorization[src]

impl Debug for Authorization[src]

impl PartialEq<Authorization> for Authorization[src]

impl StructuralPartialEq for Authorization[src]

Auto Trait Implementations

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> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> SendSyncUnwindSafe for T where
    T: Send + Sync + UnwindSafe + ?Sized
[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.