[][src]Trait kaiser::buffer::IntoBorrowingIterator

pub trait IntoBorrowingIterator<'a> {
    type IntoIter: Iterator<Item = &'a Char>;
    type IntoIterMut: Iterator<Item = &'a mut Char>;
    fn iter(&'a self) -> Self::IntoIter;
fn iter_mut(&'a mut self) -> Self::IntoIterMut; }

Associated Types

type IntoIter: Iterator<Item = &'a Char>

type IntoIterMut: Iterator<Item = &'a mut Char>

Loading content...

Required methods

fn iter(&'a self) -> Self::IntoIter

fn iter_mut(&'a mut self) -> Self::IntoIterMut

Loading content...

Implementors

impl<'a, T: 'a> IntoBorrowingIterator<'a> for T where
    &'b T: IntoIterator<Item = &'b Char>,
    &'b mut T: IntoIterator<Item = &'b mut Char>, 
[src]

type IntoIter = <&'a T as IntoIterator>::IntoIter

type IntoIterMut = <&'a mut T as IntoIterator>::IntoIter

Loading content...