use Prefix;
/// A repr for formatting data in hexadecimal. Implemented for all integers.
///
/// The inner `bool` specifies whether or not output should be uppercase.
///
/// Unlike [`Debug`](super::Debug) and [`Pretty`](super::Pretty), cannot be
/// derived, since most types cannot be intuitively formatted in hex.
///
/// Equivalent of [`core::fmt::LowerHex`] and [`core::fmt::UpperHex`].
;
derive!;