pub trait HumanReadable {
// Required method
fn as_human_readable(&self) -> String;
}Required Methods§
fn as_human_readable(&self) -> String
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".