[][src]Enum aide::openapi::v3::definition::SecuritySchemeData

pub enum SecuritySchemeData {
    ApiKey {
        name: String,
        location: String,
    },
    Http {
        scheme: String,
        bearer_format: Option<String>,
    },
    OAuth2 {
        flows: OAuthFlows,
    },
    OpenIdConnect {
        open_id_connect_url: String,
    },
}

Variants

ApiKey

Fields of ApiKey

name: Stringlocation: String
Http

Fields of Http

scheme: Stringbearer_format: Option<String>
OAuth2

Fields of OAuth2

flows: OAuthFlows
OpenIdConnect

Fields of OpenIdConnect

open_id_connect_url: String

Trait Implementations

impl Clone for SecuritySchemeData[src]

impl Debug for SecuritySchemeData[src]

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

impl JsonSchema for SecuritySchemeData[src]

impl PartialEq<SecuritySchemeData> for SecuritySchemeData[src]

impl Serialize for SecuritySchemeData[src]

impl StructuralPartialEq for SecuritySchemeData[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> DynClone for T where
    T: Clone
[src]

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

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,