tower-limit 0.3.1

Limit maximum request rate to a `Service`.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use std::fmt;
#[derive(Debug)]
/// An error that can never occur.
pub enum Never {}

impl fmt::Display for Never {
    fn fmt(&self, _: &mut fmt::Formatter) -> fmt::Result {
        match *self {}
    }
}

impl std::error::Error for Never {}