pub trait Stringify {
// Required method
fn to_bytes(&self) -> Vec<u8> ⓘ;
// Provided method
fn stringify(&self) -> String { ... }
}
Expand description
A specializable version of std::string::ToString
.
pub trait Stringify {
// Required method
fn to_bytes(&self) -> Vec<u8> ⓘ;
// Provided method
fn stringify(&self) -> String { ... }
}
A specializable version of std::string::ToString
.