[][src]Struct jsona_openapi_spec::ClientCredentialsFlow

pub struct ClientCredentialsFlow {
    pub refresh_url: Option<Url>,
    pub scopes: IndexMap<String, String>,
    // some fields omitted
}

Configuration details for a client credentials OAuth Flow See [link] [link](https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.0.1.md#oauth-flow-object

Fields

refresh_url: Option<Url>scopes: IndexMap<String, String>

Trait Implementations

impl Clone for ClientCredentialsFlow[src]

impl Debug for ClientCredentialsFlow[src]

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

impl PartialEq<ClientCredentialsFlow> for ClientCredentialsFlow[src]

impl Serialize for ClientCredentialsFlow[src]

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