pub struct GuardContext<'a> { /* private fields */ }
Expand description
Provides access to request parts that are useful during routing.
Implementations§
Source§impl<'a> GuardContext<'a>
impl<'a> GuardContext<'a>
Sourcepub fn head(&self) -> &RequestHead
pub fn head(&self) -> &RequestHead
Returns reference to the request head.
Sourcepub fn req_data(&self) -> Ref<'a, Extensions>
pub fn req_data(&self) -> Ref<'a, Extensions>
Returns reference to the request-local data/extensions container.
Sourcepub fn req_data_mut(&self) -> RefMut<'a, Extensions>
pub fn req_data_mut(&self) -> RefMut<'a, Extensions>
Returns mutable reference to the request-local data/extensions container.
Sourcepub fn header<H>(&self) -> Option<H>where
H: Header,
pub fn header<H>(&self) -> Option<H>where
H: Header,
Extracts a typed header from the request.
Returns None
if parsing H
fails.
§Examples
use actix_web::{guard::fn_guard, http::header};
let image_accept_guard = fn_guard(|ctx| {
match ctx.header::<header::Accept>() {
Some(hdr) => hdr.preference() == "image/*",
None => false,
}
});
Sourcepub fn app_data<T>(&self) -> Option<&T>where
T: 'static,
pub fn app_data<T>(&self) -> Option<&T>where
T: 'static,
Counterpart to HttpRequest::app_data.
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for GuardContext<'a>
impl<'a> !RefUnwindSafe for GuardContext<'a>
impl<'a> !Send for GuardContext<'a>
impl<'a> !Sync for GuardContext<'a>
impl<'a> Unpin for GuardContext<'a>
impl<'a> !UnwindSafe for GuardContext<'a>
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> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more