[−][src]Struct actix_web_httpauth::headers::authorization::Basic
Credentials for Basic authentication scheme, defined in RFC 7617
Methods
impl Basic[src]
pub fn new<U, P>(user_id: U, password: Option<P>) -> Basic where
U: Into<Cow<'static, str>>,
P: Into<Cow<'static, str>>, [src]
U: Into<Cow<'static, str>>,
P: Into<Cow<'static, str>>,
Creates Basic credentials with provided user_id and optional
password.
Example
let credentials = Basic::new("Alladin", Some("open sesame"));
pub fn user_id(&self) -> &Cow<'static, str>[src]
Returns client's user-ID.
pub fn password(&self) -> Option<&Cow<'static, str>>[src]
Returns client's password if provided.
Trait Implementations
impl Clone for Basic[src]
impl Debug for Basic[src]
impl Display for Basic[src]
impl Eq for Basic[src]
impl IntoHeaderValue for Basic[src]
type Error = InvalidHeaderValue
The type returned in the event of a conversion error.
fn try_into(self) -> Result<HeaderValue, Self::Error>[src]
impl Ord for Basic[src]
fn cmp(&self, other: &Basic) -> Ordering[src]
fn max(self, other: Self) -> Self1.21.0[src]
fn min(self, other: Self) -> Self1.21.0[src]
fn clamp(self, min: Self, max: Self) -> Self[src]
impl PartialEq<Basic> for Basic[src]
impl PartialOrd<Basic> for Basic[src]
fn partial_cmp(&self, other: &Basic) -> Option<Ordering>[src]
fn lt(&self, other: &Basic) -> bool[src]
fn le(&self, other: &Basic) -> bool[src]
fn gt(&self, other: &Basic) -> bool[src]
fn ge(&self, other: &Basic) -> bool[src]
impl Scheme for Basic[src]
fn parse(header: &HeaderValue) -> Result<Self, ParseError>[src]
impl StructuralEq for Basic[src]
impl StructuralPartialEq for Basic[src]
Auto Trait Implementations
impl RefUnwindSafe for Basic
impl Send for Basic
impl Sync for Basic
impl Unpin for Basic
impl UnwindSafe for Basic
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<Q, K> Equivalent<K> for Q where
K: Borrow<Q> + ?Sized,
Q: Eq + ?Sized, [src]
K: Borrow<Q> + ?Sized,
Q: Eq + ?Sized,
fn equivalent(&self, key: &K) -> bool[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T> ToString for T where
T: Display + ?Sized, [src]
T: Display + ?Sized,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
V: MultiLane<T>,