pub trait Digit<T> {
// Required method
fn digit(self, d: T) -> String;
}Expand description
Abstract Digit trait, fill the empty space to specific length.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".