[][src]Struct open_api_hydra::models::logout_request::LogoutRequest

pub struct LogoutRequest {
    pub request_url: Option<String>,
    pub rp_initiated: Option<bool>,
    pub sid: Option<String>,
    pub subject: Option<String>,
}

Fields

request_url: Option<String>

RequestURL is the original Logout URL requested.

rp_initiated: Option<bool>

RPInitiated is set to true if the request was initiated by a Relying Party (RP), also known as an OAuth 2.0 Client.

sid: Option<String>

SessionID is the login session ID that was requested to log out.

subject: Option<String>

Subject is the user for whom the logout was request.

Implementations

impl LogoutRequest[src]

Trait Implementations

impl Clone for LogoutRequest[src]

impl Debug for LogoutRequest[src]

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

impl PartialEq<LogoutRequest> for LogoutRequest[src]

impl Serialize for LogoutRequest[src]

impl StructuralPartialEq for LogoutRequest[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> 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.