pub struct Header<T>(pub T);
Expand description
Tuple Fields§
§0: T
Implementations§
Source§impl<T> Header<T>
impl<T> Header<T>
Sourcepub fn into_inner(self) -> T
pub fn into_inner(self) -> T
Unwrap into the inner T
value.
Trait Implementations§
Source§impl<T> FromRequest for Header<T>where
T: ParseHeader,
impl<T> FromRequest for Header<T>where
T: ParseHeader,
Source§type Error = ParseError
type Error = ParseError
The associated error which can be returned.
Source§type Future = Ready<Result<Header<T>, <Header<T> as FromRequest>::Error>>
type Future = Ready<Result<Header<T>, <Header<T> as FromRequest>::Error>>
Future that resolves to a
Self
. Read moreSource§fn from_request(req: &HttpRequest, _: &mut Payload) -> Self::Future
fn from_request(req: &HttpRequest, _: &mut Payload) -> Self::Future
Create a
Self
from request parts asynchronously.Source§impl<T: Ord> Ord for Header<T>
impl<T: Ord> Ord for Header<T>
Source§impl<T: PartialOrd> PartialOrd for Header<T>
impl<T: PartialOrd> PartialOrd for Header<T>
impl<T: Eq> Eq for Header<T>
impl<T> StructuralPartialEq for Header<T>
Auto Trait Implementations§
impl<T> Freeze for Header<T>where
T: Freeze,
impl<T> RefUnwindSafe for Header<T>where
T: RefUnwindSafe,
impl<T> Send for Header<T>where
T: Send,
impl<T> Sync for Header<T>where
T: Sync,
impl<T> Unpin for Header<T>where
T: Unpin,
impl<T> UnwindSafe for Header<T>where
T: UnwindSafe,
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> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
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.