[][src]Struct fxa_client::state_persistence::V1Config

struct V1Config {
    content_url: String,
    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,
}

Fields

content_url: Stringauth_url: Stringoauth_url: Stringprofile_url: Stringtoken_server_endpoint_url: Stringauthorization_endpoint: Stringissuer: Stringjwks_uri: Stringtoken_endpoint: Stringuserinfo_endpoint: String

Trait Implementations

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

Auto Trait Implementations

impl RefUnwindSafe for V1Config

impl Send for V1Config

impl Sync for V1Config

impl Unpin for V1Config

impl UnwindSafe for V1Config

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, 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>,