pub trait ToChars {
    // Required method
    fn to_chars(&self) -> Vec<char> ;
}

Required Methods§

source

fn to_chars(&self) -> Vec<char>

Implementations on Foreign Types§

source§

impl ToChars for String

source§

impl ToChars for &str

Implementors§