pub trait ToWordSequence {
// Required method
fn to_word_sequence(&self) -> String;
}
Expand description
Trait to be implemented by unsigned integers to convert to human-readable string.
pub trait ToWordSequence {
// Required method
fn to_word_sequence(&self) -> String;
}
Trait to be implemented by unsigned integers to convert to human-readable string.