#[non_exhaustive]pub enum ResolvedAuth {
None,
Bearer(String),
Header {
name: String,
value: String,
},
Basic {
username: String,
password: Option<String>,
},
Query {
name: String,
value: String,
},
}Expand description
Owned authentication resolved from Auth.
Held by PreparedRequest so the prepared request is 'static and can be
stored, logged, or sent across threads without lifetime constraints.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
None
No authentication.
Bearer(String)
Bearer token.
Header
Custom header.
Basic
HTTP Basic authentication.
Query
API key as query parameter.
Trait Implementations§
Source§impl Clone for ResolvedAuth
impl Clone for ResolvedAuth
Source§fn clone(&self) -> ResolvedAuth
fn clone(&self) -> ResolvedAuth
Returns a duplicate 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 ResolvedAuth
Debug output masks secret values to prevent credential leakage in logs.
impl Debug for ResolvedAuth
Debug output masks secret values to prevent credential leakage in logs.
Source§impl From<&Auth<'_>> for ResolvedAuth
impl From<&Auth<'_>> for ResolvedAuth
Source§impl PartialEq for ResolvedAuth
impl PartialEq for ResolvedAuth
impl Eq for ResolvedAuth
impl StructuralPartialEq for ResolvedAuth
Auto Trait Implementations§
impl Freeze for ResolvedAuth
impl RefUnwindSafe for ResolvedAuth
impl Send for ResolvedAuth
impl Sync for ResolvedAuth
impl Unpin for ResolvedAuth
impl UnsafeUnpin for ResolvedAuth
impl UnwindSafe for ResolvedAuth
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.