Trait hyphenation::iter::Iter[][src]

pub trait Iter<'t> {
    type Iter;
    fn iter(&'t self) -> Hyphenating<'t, Self::Iter>

Notable traits for Hyphenating<'m, I>

impl<'m, I, S> Iterator for Hyphenating<'m, I> where
    I: Iterator<Item = S> + ExactSizeIterator,
    S: AsRef<str>, 
type Item = String;
; }
Expand description

A hyphenating iterator with borrowed data.

Associated Types

Required methods

fn iter(&'t self) -> Hyphenating<'t, Self::Iter>

Notable traits for Hyphenating<'m, I>

impl<'m, I, S> Iterator for Hyphenating<'m, I> where
    I: Iterator<Item = S> + ExactSizeIterator,
    S: AsRef<str>, 
type Item = String;
[src]

Implementors

impl<'t> Iter<'t> for Word<'t, usize>[src]

type Iter = Segments<'t, Cloned<Iter<'t, usize>>>

fn iter(&'t self) -> Hyphenating<'t, Self::Iter>

Notable traits for Hyphenating<'m, I>

impl<'m, I, S> Iterator for Hyphenating<'m, I> where
    I: Iterator<Item = S> + ExactSizeIterator,
    S: AsRef<str>, 
type Item = String;
[src]