pub trait IntoDigits: Sized {
type Digit;
// Provided methods
fn into_digits(self) -> Vec<Self::Digit> { ... }
fn into_rev_digits(self) -> Vec<Self::Digit> { ... }
}Required Associated Types§
Provided Methods§
fn into_digits(self) -> Vec<Self::Digit>
fn into_rev_digits(self) -> Vec<Self::Digit>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.