[][src]Struct core_extensions::strings::CharIndicesFrom

pub struct CharIndicesFrom<'a> { /* fields omitted */ }

Like CharIndices which starts from an offset.

Look here for details and examples.

Methods

impl<'a> CharIndicesFrom<'a>[src]

pub fn as_str(&self) -> &'a str[src]

Returns the rest of the slice to be iterated over.

Trait Implementations

impl<'a> Debug for CharIndicesFrom<'a>[src]

impl<'a> Iterator for CharIndicesFrom<'a>[src]

type Item = (usize, char)

The type of the elements being iterated over.

impl<'a> DoubleEndedIterator for CharIndicesFrom<'a>[src]

impl<'a> Clone for CharIndicesFrom<'a>[src]

Auto Trait Implementations

impl<'a> Unpin for CharIndicesFrom<'a>

impl<'a> Send for CharIndicesFrom<'a>

impl<'a> Sync for CharIndicesFrom<'a>

impl<'a> UnwindSafe for CharIndicesFrom<'a>

impl<'a> RefUnwindSafe for CharIndicesFrom<'a>

Blanket Implementations

impl<I> IteratorExt for I where
    I: Iterator
[src]

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The error type returned when the conversion fails.

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = !

The type returned in the event of a conversion error.

impl<I> IntoIterator for I where
    I: Iterator
[src]

type Item = <I as Iterator>::Item

The type of the elements being iterated over.

type IntoIter = I

Which kind of iterator are we turning this into?

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.