use ResponseBody;
pub use ColorFormatter;
pub use EmojiFormatter;
pub use PlainFormatter;
pub use TaskFormatter;
/// Desired total width of formatted string for color formatter
///
/// The longest string, which needs to be formatted, is currently `EXCLUDED`
/// which is 8 characters long.
///
/// Keep in sync with `Status::code_as_string`, which converts status codes to
/// strings.
pub const MAX_RESPONSE_OUTPUT_WIDTH: usize = 8;
/// 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