[][src]Struct fxa_client::config::RemoteConfig

pub struct RemoteConfig {
    auth_url: String,
    oauth_url: String,
    profile_url: String,
    token_server_endpoint_url: String,
    authorization_endpoint: String,
    issuer: String,
    jwks_uri: String,
    token_endpoint: String,
    userinfo_endpoint: String,
    introspection_endpoint: String,
}

RemoteConfig struct stores configuration values from the FxA /.well-known/fxa-client-configuration and the /.well-known/openid-configuration endpoints.

Fields

auth_url: Stringoauth_url: Stringprofile_url: Stringtoken_server_endpoint_url: Stringauthorization_endpoint: Stringissuer: Stringjwks_uri: Stringtoken_endpoint: Stringuserinfo_endpoint: Stringintrospection_endpoint: String

Trait Implementations

impl Debug for RemoteConfig[src]

Auto Trait Implementations

impl RefUnwindSafe for RemoteConfig

impl Send for RemoteConfig

impl Sync for RemoteConfig

impl Unpin for RemoteConfig

impl UnwindSafe for RemoteConfig

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, 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<V, T> VZip<V> for T where
    V: MultiLane<T>,