pub trait IntoDigits<T> {
// Required method
fn digits(self) -> DigitIterator<T>;
}Expand description
Extends a type T with the ability to become a DigitIterator.
Required Methods§
fn digits(self) -> DigitIterator<T>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".