Trait string_patterns::ToStrings 
source · pub trait ToStrings {
    // Required method
    fn to_strings(&self) -> Vec<String>;
}Expand description
Converts arrays or vectors of strs to a vector of owned strings
Required Methods§
fn to_strings(&self) -> Vec<String>
Implementations on Foreign Types§
source§impl<T: ToString> ToStrings for [T]
 
impl<T: ToString> ToStrings for [T]
source§fn to_strings(&self) -> Vec<String>
 
fn to_strings(&self) -> Vec<String>
Converts arrays or vectors of strs to a vector of owned strings
source§impl<T: ToString> ToStrings for Vec<T>
 
impl<T: ToString> ToStrings for Vec<T>
source§fn to_strings(&self) -> Vec<String>
 
fn to_strings(&self) -> Vec<String>
Converts arrays or vectors of strs to a vector of owned strings