pub trait IntoString {
// Required method
fn into_string(self) -> String;
}
Expand description
Required Methods§
Sourcefn into_string(self) -> String
fn into_string(self) -> String
Converts value into string.
pub trait IntoString {
// Required method
fn into_string(self) -> String;
}
Converts value into string.