pub enum ErrorReportFormat {
Plain,
Json,
Markdown,
Html,
}
Expand description
Output formats for error reports
Variants§
Plain
Plain text format
Json
JSON structured format
Markdown
Markdown formatted text
Html
HTML formatted output
Trait Implementations§
Source§impl Clone for ErrorReportFormat
impl Clone for ErrorReportFormat
Source§fn clone(&self) -> ErrorReportFormat
fn clone(&self) -> ErrorReportFormat
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ErrorReportFormat
impl Debug for ErrorReportFormat
Source§impl Display for ErrorReportFormat
impl Display for ErrorReportFormat
Source§impl PartialEq for ErrorReportFormat
impl PartialEq for ErrorReportFormat
impl Copy for ErrorReportFormat
impl Eq for ErrorReportFormat
impl StructuralPartialEq for ErrorReportFormat
Auto Trait Implementations§
impl Freeze for ErrorReportFormat
impl RefUnwindSafe for ErrorReportFormat
impl Send for ErrorReportFormat
impl Sync for ErrorReportFormat
impl Unpin for ErrorReportFormat
impl UnwindSafe for ErrorReportFormat
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more