[][src]Trait owned_chars::OwnedCharsExt

pub trait OwnedCharsExt {
    pub fn into_chars(self) -> OwnedChars

Notable traits for OwnedChars

impl Iterator for OwnedChars type Item = char;
;
pub fn into_char_indices(self) -> OwnedCharIndices

Notable traits for OwnedCharIndices

impl Iterator for OwnedCharIndices type Item = (usize, char);
; }

Extension trait for String providing owned char and char-index iterators

Required methods

pub fn into_chars(self) -> OwnedChars

Notable traits for OwnedChars

impl Iterator for OwnedChars type Item = char;
[src]

Gets an owning iterator over the chars (see chars())

pub fn into_char_indices(self) -> OwnedCharIndices

Notable traits for OwnedCharIndices

impl Iterator for OwnedCharIndices type Item = (usize, char);
[src]

Gets an owning iterator over the chars and their indices (see char_indices())

Loading content...

Implementations on Foreign Types

impl OwnedCharsExt for String[src]

Loading content...

Implementors

Loading content...