use ResponseBody;
pub use ColorFormatter;
pub use EmojiFormatter;
pub use PlainFormatter;
/// Desired total width of formatted string for color formatter
///
/// The longest string, which needs to be formatted, is currently `[Excluded]`
/// which is 10 characters long (including brackets).
///
/// Keep in sync with `Status::code_as_string`, which converts status codes to
/// strings.
pub const MAX_RESPONSE_OUTPUT_WIDTH: usize = 10;
/// A trait for formatting a response body
///
/// This trait is used to convert response body into a human-readable string.
/// It can be implemented for different formatting styles such as
/// colorized output or plaintext.
pub