1 2 3 4 5 6 7 8 9 10 11 12 13
use std::fmt;
/// Error type for request parsing failure
#[derive(Debug, Default, Copy, Clone)]
pub struct BadRequest;
impl fmt::Display for BadRequest {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.pad("Request object is not cloneable. Are you passing a streaming body?")
}
}
impl std::error::Error for BadRequest {}