Display

Trait Display 

Source
pub trait Display:
    Display
    + Debug
    + Send
    + Sync
    + 'static { }
Expand description

Trait alias for types that can be displayed and used in error attachments.

This trait combines Display, Debug, Send, Sync, and 'static bounds for types that can be attached to error reports.

Implementors§

Source§

impl<A> Display for A
where A: Display + Debug + Send + Sync + 'static,