pub trait ToOptionVecString {
// Required method
fn to_option_vec_string(self) -> Option<Vec<String>>;
}Expand description
You need to make sure this trait is imported by any code that wants to use
the C!, DC!, or M! macros.
Required Methods§
fn to_option_vec_string(self) -> Option<Vec<String>>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".