Trait odds::string::StringExt  
                   
                       [−]
                   
               [src]
pub trait StringExt {
    fn insert_str(&mut self, index: usize, s: &str);
}Extra methods for String
Requires feature="std"
Required Methods
fn insert_str(&mut self, index: usize, s: &str)
Panics if index is out of bounds.
Implementors
- impl StringExt for String