http-request-body 0.1.0

HTTP Request Body
Documentation
1
2
3
4
5
6
7
8
9
10
11
//
#[derive(Debug)]
pub enum Error {
    Other(Box<dyn std::error::Error + Send + Sync + 'static>),
}
impl core::fmt::Display for Error {
    fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
        write!(f, "{self:?}")
    }
}
impl std::error::Error for Error {}