IntoDigits

Trait IntoDigits 

Source
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§

Source

fn into_digits(self) -> Vec<Self::Digit>

Source

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.

Implementations on Foreign Types§

Source§

impl IntoDigits for usize

Implementors§