Struct actix_web_httpauth::headers::authorization::Basic [−][src]
Credentials for Basic
authentication scheme, defined in RFC 7617
Implementations
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_value(self) -> Result<HeaderValue, Self::Error>
[src]
impl Ord for Basic
[src]
fn cmp(&self, other: &Basic) -> Ordering
[src]
#[must_use]pub fn max(self, other: Self) -> Self
1.21.0[src]
#[must_use]pub fn min(self, other: Self) -> Self
1.21.0[src]
#[must_use]pub fn clamp(self, min: Self, max: Self) -> Self
1.50.0[src]
impl PartialEq<Basic> for Basic
[src]
impl PartialOrd<Basic> for Basic
[src]
fn partial_cmp(&self, other: &Basic) -> Option<Ordering>
[src]
#[must_use]pub fn lt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]pub fn le(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]pub fn gt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]pub fn ge(&self, other: &Rhs) -> bool
1.0.0[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,
pub 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,
pub fn equivalent(&self, key: &K) -> bool
[src]
impl<T> From<T> for T
[src]
impl<T> Instrument for T
[src]
pub fn instrument(self, span: Span) -> Instrumented<Self>
[src]
pub fn in_current_span(self) -> Instrumented<Self>
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> Same<T> for T
type Output = T
Should always be Self
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub 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.
pub 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.
pub 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>,