DebugAsHex in core::fmt - Rust (original) (raw)
pub enum DebugAsHex {
Lower,
Upper,
}
🔬This is a nightly-only experimental API. (formatting_options
#118117)
Expand description
Specifies whether the Debug trait should use lower-/upper-case hexadecimal or normal integers.
🔬This is a nightly-only experimental API. (formatting_options
#118117)
Use lower-case hexadecimal integers for the Debug
trait (like the x? type).
🔬This is a nightly-only experimental API. (formatting_options
#118117)
Use upper-case hexadecimal integers for the Debug
trait (like the X? type).