[][src]Struct oxide_auth_db::db_service::redis::StringfiedEncodedClient

pub struct StringfiedEncodedClient {
    pub client_id: String,
    pub redirect_uri: String,
    pub additional_redirect_uris: Vec<String>,
    pub default_scope: Option<String>,
    pub client_secret: Option<String>,
}

A client whose credentials have been wrapped by a password policy.

This provides a standard encoding for Registrars who wish to store their clients and makes it possible to test password policies.

Fields

client_id: String

The id of this client. If this is was registered at a Registrar, this should be a key to the instance.

redirect_uri: String

The registered redirect uri. Unlike additional_redirect_uris, this is registered as the default redirect uri and will be replaced if, for example, no redirect_uri is specified in the request parameter.

additional_redirect_uris: Vec<String>

The redirect uris that can be registered in addition to the redirect_uri. If you want to register multiple redirect uris, register them together with redirect_uri.

default_scope: Option<String>

The scope the client gets if none was given.

client_secret: Option<String>

client_secret, for authentication.

Implementations

impl StringfiedEncodedClient[src]

pub fn to_encoded_client(&self) -> Result<EncodedClient>[src]

pub fn from_encoded_client(encoded_client: &EncodedClient) -> Self[src]

Trait Implementations

impl Clone for StringfiedEncodedClient[src]

impl Debug for StringfiedEncodedClient[src]

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

impl Serialize for StringfiedEncodedClient[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> CloneAny for T where
    T: Clone + Any

impl<T> DebugAny for T where
    T: Any + Debug

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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> 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.

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

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

impl<T> UnsafeAny for T where
    T: Any

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