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.

Implementations on Foreign Types

impl StringExt for String
[src]

[src]

Panics if index is out of bounds.

Implementors