pub trait BigByte {
// Required method
fn big_byte(&self, precision: usize) -> String;
}Expand description
Makes a type representable as a byte count.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".