[go: up one dir, main page]

tower-load-shed 0.3.0

Immediately reject requests if the inner service is not ready. This is also known as load-shedding.
Documentation
use std::fmt;
use tower_layer::Layer;

use crate::LoadShed;

/// A `tower-layer` to wrap services in `LoadShed` middleware.
#[derive(Clone)]
pub struct LoadShedLayer {
    _p: (),
}

impl LoadShedLayer {
    /// Creates a new layer.
    pub fn new() -> Self {
        LoadShedLayer { _p: () }
    }
}

impl<S> Layer<S> for LoadShedLayer {
    type Service = LoadShed<S>;

    fn layer(&self, service: S) -> Self::Service {
        LoadShed::new(service)
    }
}

impl fmt::Debug for LoadShedLayer {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        f.debug_struct("LoadShedLayer").finish()
    }
}