fn new() -> Selffn prepare(&self, s: &str) -> Stringfn len(&self, s: &str) -> usizefn remove(&self, s: &str, index: usize) -> Stringfn slice(&self, s: &str, start: usize, end: usize) -> Stringfn suffix(&self, s: &str, start: usize) -> Stringfn at(&self, s: &str, i: isize) -> Option<char>impl StringStrategy for AsciiStringStrategy[src]fn new() -> Self[src]fn prepare(&self, s: &str) -> String[src]fn len(&self, s: &str) -> usize[src]fn remove(&self, s: &str, index: usize) -> String[src]fn slice(&self, s: &str, start: usize, end: usize) -> String[src]fn suffix(&self, s: &str, start: usize) -> String[src]fn at(&self, s: &str, i: isize) -> Option<char>[src]impl StringStrategy for UnicodeStringStrategy[src]fn new() -> Self[src]fn prepare(&self, s: &str) -> String[src]fn len(&self, s: &str) -> usize[src]fn remove(&self, s: &str, index: usize) -> String[src]fn slice(&self, s: &str, start: usize, end: usize) -> String[src]fn suffix(&self, s: &str, start: usize) -> String[src]fn at(&self, s: &str, i: isize) -> Option<char>[src]