Struct actix_web_lab::extract::LocalData
source · [−]pub struct LocalData<T: ?Sized>(_);Expand description
A thread-local equivalent to SharedData.
Implementations
Trait Implementations
sourceimpl<T: ?Sized + 'static> FromRequest for LocalData<T>
impl<T: ?Sized + 'static> FromRequest for LocalData<T>
sourcefn from_request(req: &HttpRequest, _: &mut Payload) -> Self::Future
fn from_request(req: &HttpRequest, _: &mut Payload) -> Self::Future
Create a
Self from request parts asynchronously.sourcefn extract(req: &HttpRequest) -> Self::Future
fn extract(req: &HttpRequest) -> Self::Future
Create a
Self from request head asynchronously. Read moreAuto Trait Implementations
impl<T: ?Sized> RefUnwindSafe for LocalData<T>where
T: RefUnwindSafe,
impl<T> !Send for LocalData<T>
impl<T> !Sync for LocalData<T>
impl<T: ?Sized> Unpin for LocalData<T>
impl<T: ?Sized> UnwindSafe for LocalData<T>where
T: RefUnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T, A> DynAccess<T> for Awhere
A: Access<T>,
<A as Access<T>>::Guard: 'static,
impl<T, A> DynAccess<T> for Awhere
A: Access<T>,
<A as Access<T>>::Guard: 'static,
sourcefn load(&self) -> DynGuard<T>
fn load(&self) -> DynGuard<T>
The equivalent of
Access::load.