Struct collections::string::Splice
[−]
[src]
pub struct Splice<'a, 'b> { /* fields omitted */ }
🔬 This is a nightly-only experimental API. (splice
#44643)
recently added
A splicing iterator for String
.
This struct is created by the splice()
method on String
. See its
documentation for more.
Trait Implementations
impl<'a, 'b> DoubleEndedIterator for Splice<'a, 'b>
[src]
fn next_back(&mut self) -> Option<char>
[src]
🔬 This is a nightly-only experimental API. (splice
#44643)
recently added
impl<'a, 'b> Send for Splice<'a, 'b>
[src]
impl<'a, 'b> Drop for Splice<'a, 'b>
[src]
impl<'a, 'b> Debug for Splice<'a, 'b>
[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result<(), Error>
[src]
Formats the value using the given formatter.
impl<'a, 'b> Iterator for Splice<'a, 'b>
[src]
type Item = char
🔬 This is a nightly-only experimental API. (splice
#44643)
recently added
fn next(&mut self) -> Option<char>
[src]
🔬 This is a nightly-only experimental API. (splice
#44643)
recently added
fn size_hint(&self) -> (usize, Option<usize>)
[src]
🔬 This is a nightly-only experimental API. (splice
#44643)
recently added