pub(crate) trait WriteString {
// Required method
fn write_string(&self) -> String;
}
Expand description
Essentially the same as ToString
.
Exists to make some foreign types into a string.
Required Methods§
Sourcefn write_string(&self) -> String
fn write_string(&self) -> String
See ToString::to_string
.