#![deny(missing_debug_implementations, missing_docs)]
use http::StatusCode;
pub trait ProblemDetails: serde::Serialize {
fn kind(&self) -> &str;
fn title(&self) -> &str;
fn status_code(&self) -> StatusCode;
fn set_kind(&mut self, kind: &str, title: &str) -> &mut Self;
fn set_status_code(&mut self, value: StatusCode) -> &mut Self;
}
impl ProblemDetails for Error {
fn set_kind(&mut self, kind: &str, title: &str) -> &mut Self {
self.set_kind(kind, title)
}
fn status_code(&self) -> StatusCode {
self.status_code()
}
fn kind(&self) -> &str {
self.kind()
}
fn title(&self) -> &str {
self.title()
}
fn set_status_code(&mut self, value: StatusCode) -> &mut Self {
self.set_status_code(value)
}
}
pub use self::error::{Builder, Error};
mod error;
mod extension;