pub enum Security {
ApiKey {
name: String,
location: ApiKeyLocation,
description: Option<String>,
},
Oauth2 {
flow: Flow,
authorization_url: String,
token_url: Option<String>,
scopes: IndexMap<String, String>,
description: Option<String>,
},
Basic {
description: Option<String>,
},
}
Available on crate feature
v2
only.Variants§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Security
impl<'de> Deserialize<'de> for Security
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Into<RefOr<SecurityScheme>> for Security
impl Into<RefOr<SecurityScheme>> for Security
Source§fn into(self) -> RefOr<SecurityScheme>
fn into(self) -> RefOr<SecurityScheme>
Converts this type into the (usually inferred) input type.
impl StructuralPartialEq for Security
Auto Trait Implementations§
impl Freeze for Security
impl RefUnwindSafe for Security
impl Send for Security
impl Sync for Security
impl Unpin for Security
impl UnwindSafe for Security
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more