Trait std_unicode::str::UnicodeStr
[−]
[src]
pub trait UnicodeStr { fn split_whitespace<'a>(&'a self) -> SplitWhitespace<'a>; fn is_whitespace(&self) -> bool; fn is_alphanumeric(&self) -> bool; fn trim(&self) -> &str; fn trim_left(&self) -> &str; fn trim_right(&self) -> &str; }
Methods for Unicode string slices
Required Methods
ⓘImportant traits for SplitWhitespace<'a>
fn split_whitespace<'a>(&'a self) -> SplitWhitespace<'a>
fn is_whitespace(&self) -> bool
fn is_alphanumeric(&self) -> bool
fn trim(&self) -> &str
fn trim_left(&self) -> &str
fn trim_right(&self) -> &str
Implementors
impl UnicodeStr for str