[][src]Struct rusoto_sso_oidc::RegisterClientRequest

pub struct RegisterClientRequest {
    pub client_name: String,
    pub client_type: String,
    pub scopes: Option<Vec<String>>,
}

Fields

client_name: String

The friendly name of the client.

client_type: String

The type of client. The service supports only public as a client type. Anything other than public will be rejected by the service.

scopes: Option<Vec<String>>

The list of scopes that are defined by the client. Upon authorization, this list is used to restrict permissions when granting an access token.

Trait Implementations

impl Clone for RegisterClientRequest[src]

impl Debug for RegisterClientRequest[src]

impl Default for RegisterClientRequest[src]

impl PartialEq<RegisterClientRequest> for RegisterClientRequest[src]

impl Serialize for RegisterClientRequest[src]

impl StructuralPartialEq for RegisterClientRequest[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> Instrument for T[src]

impl<T> Instrument 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.