Enum salvo_oapi::security::HttpAuthScheme
source · pub enum HttpAuthScheme {
Basic,
Bearer,
Digest,
Hoba,
Mutual,
Negotiate,
OAuth,
ScramSha1,
ScramSha256,
Vapid,
}Expand description
Implements types according RFC7235.
Types are maintained at https://www.iana.org/assignments/http-authschemes/http-authschemes.xhtml.
Variants§
Basic
Basic authentication scheme.
Bearer
Bearer authentication scheme.
Digest
Digest authentication scheme.
Hoba
HOBA authentication scheme.
Mutual
Mutual authentication scheme.
Negotiate
Negotiate authentication scheme.
OAuth
OAuth authentication scheme.
ScramSha1
ScramSha1 authentication scheme.
ScramSha256
ScramSha256 authentication scheme.
Vapid
Vapid authentication scheme.
Trait Implementations§
source§impl Clone for HttpAuthScheme
impl Clone for HttpAuthScheme
source§fn clone(&self) -> HttpAuthScheme
fn clone(&self) -> HttpAuthScheme
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for HttpAuthScheme
impl Debug for HttpAuthScheme
source§impl Default for HttpAuthScheme
impl Default for HttpAuthScheme
source§impl<'de> Deserialize<'de> for HttpAuthScheme
impl<'de> Deserialize<'de> for HttpAuthScheme
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 PartialEq<HttpAuthScheme> for HttpAuthScheme
impl PartialEq<HttpAuthScheme> for HttpAuthScheme
source§fn eq(&self, other: &HttpAuthScheme) -> bool
fn eq(&self, other: &HttpAuthScheme) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl Serialize for HttpAuthScheme
impl Serialize for HttpAuthScheme
impl Eq for HttpAuthScheme
impl StructuralEq for HttpAuthScheme
impl StructuralPartialEq for HttpAuthScheme
Auto Trait Implementations§
impl RefUnwindSafe for HttpAuthScheme
impl Send for HttpAuthScheme
impl Sync for HttpAuthScheme
impl Unpin for HttpAuthScheme
impl UnwindSafe for HttpAuthScheme
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
§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.