Converts integer of type N (all standard types are supported) and returns a Vec<i8> of its digits (base 10).
Vec<i8>
Documentation
Add this to your Cargo.toml:
Cargo.toml
toml [dependencies] num-digitize = "0.4"
and this to your crate root:
rust extern crate num_digitize;