Struct actix_web_lab::middleware::LoadShed
source · [−]#[non_exhaustive]pub struct LoadShed;
Expand description
A middleware that sheds load when the inner service isn’t ready.
Implementations
Trait Implementations
sourceimpl<S: Service<Req>, Req> Transform<S, Req> for LoadShed
impl<S: Service<Req>, Req> Transform<S, Req> for LoadShed
type Transform = LoadShedService<S>
type Transform = LoadShedService<S>
The
TransformService
value created by this factorytype Future = Ready<Result<<LoadShed as Transform<S, Req>>::Transform, <LoadShed as Transform<S, Req>>::InitError>>
type Future = Ready<Result<<LoadShed as Transform<S, Req>>::Transform, <LoadShed as Transform<S, Req>>::InitError>>
The future response value.
sourcefn new_transform(&self, service: S) -> Self::Future
fn new_transform(&self, service: S) -> Self::Future
Creates and returns a new Transform component, asynchronously
Auto Trait Implementations
impl RefUnwindSafe for LoadShed
impl Send for LoadShed
impl Sync for LoadShed
impl Unpin for LoadShed
impl UnwindSafe for LoadShed
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