Struct actix_web_httpauth::headers::www_authenticate::basic::Basic [−][src]
Challenge for WWW-Authenticate
header with HTTP Basic auth scheme,
described in RFC 7617
Example
use actix_web_httpauth::headers::www_authenticate::basic::Basic; use actix_web_httpauth::headers::www_authenticate::WwwAuthenticate; fn index(_req: HttpRequest) -> HttpResponse { let challenge = Basic::with_realm("Restricted area"); HttpResponse::Unauthorized() .insert_header(WwwAuthenticate(challenge)) .finish() }
Implementations
impl Basic
[src]
pub fn new() -> Basic
[src]
pub fn with_realm<T>(value: T) -> Basic where
T: Into<Cow<'static, str>>,
[src]
T: Into<Cow<'static, str>>,
Creates new Basic
challenge from the provided realm
field value.
Examples
let challenge = Basic::with_realm("Restricted area");
let my_realm = "Earth realm".to_string(); let challenge = Basic::with_realm(my_realm);
Trait Implementations
impl AsRef<Basic> for Config
[src]
impl Clone for Basic
[src]
impl Debug for Basic
[src]
impl Default for Basic
[src]
impl Display for Basic
[src]
impl Eq for Basic
[src]
impl Hash for Basic
[src]
fn hash<__H: Hasher>(&self, state: &mut __H)
[src]
pub fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
1.3.0[src]
H: Hasher,
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 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<T> CallHasher for T where
T: Hash + ?Sized,
T: Hash + ?Sized,
pub default fn get_hash<H, B>(value: &H, build_hasher: &B) -> u64 where
B: BuildHasher,
H: Hash + ?Sized,
B: BuildHasher,
H: Hash + ?Sized,
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>,