pub trait IntoStrings {
// Required method
fn into_strings(self) -> Vec<String>;
}Expand description
A type that can be converted to a list of strings.
Required Methods§
Sourcefn into_strings(self) -> Vec<String>
fn into_strings(self) -> Vec<String>
Creates a list of strings from this type.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".