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

Panics if index is out of bounds.

Implementors