Struct openapiv3::OAuth2Flows[][src]

pub struct OAuth2Flows {
    pub implicit: Option<OAuth2Flow>,
    pub password: Option<OAuth2Flow>,
    pub client_credentials: Option<OAuth2Flow>,
    pub authorization_code: Option<OAuth2Flow>,
}

Fields

implicit: Option<OAuth2Flow>password: Option<OAuth2Flow>client_credentials: Option<OAuth2Flow>authorization_code: Option<OAuth2Flow>

Trait Implementations

impl Clone for OAuth2Flows[src]

impl Debug for OAuth2Flows[src]

impl Default for OAuth2Flows[src]

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

impl PartialEq<OAuth2Flows> for OAuth2Flows[src]

impl Serialize for OAuth2Flows[src]

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