pub trait ToOctalString: Octal {
// Required method
fn to_octal_string(&self) -> String;
}
Expand description
A trait that provides an ergonomic way to create the string specified by an Octal
implementation.
pub trait ToOctalString: Octal {
// Required method
fn to_octal_string(&self) -> String;
}
A trait that provides an ergonomic way to create the string specified by an Octal
implementation.