Trait ToName

Source
pub trait ToName {
    // Required method
    fn to_name(&self) -> String;
}
Expand description

Provides functionality to convert numeric values to reproducible, human-readable names.

Required Methods§

Source

fn to_name(&self) -> String

Implementations on Foreign Types§

Source§

impl ToName for u8

Source§

fn to_name(&self) -> String

Source§

impl ToName for u16

Source§

fn to_name(&self) -> String

Source§

impl ToName for u32

Source§

fn to_name(&self) -> String

Source§

impl ToName for u64

Source§

fn to_name(&self) -> String

Implementors§