pub enum SchemeKind {
ApiKey {
key: String,
location: ApiKeyIn,
},
HttpBearer,
HttpBasic,
}Expand description
Concrete v0.1-supported scheme variants.
Variants§
Trait Implementations§
Source§impl Clone for SchemeKind
impl Clone for SchemeKind
Source§fn clone(&self) -> SchemeKind
fn clone(&self) -> SchemeKind
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for SchemeKind
impl RefUnwindSafe for SchemeKind
impl Send for SchemeKind
impl Sync for SchemeKind
impl Unpin for SchemeKind
impl UnsafeUnpin for SchemeKind
impl UnwindSafe for SchemeKind
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