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.