//! The [`Diagnostic`] bound shared by all warning and violation types.
usecore::fmt;/// Bound required on all warning and violation types, built-in or custom.
////// Blanket-implemented for any type that is [`fmt::Display`] + [`fmt::Debug`].
pubtraitDiagnostic: fmt::Display + fmt::Debug {}impl<T:fmt::Display +fmt::Debug> Diagnostic forT{}