[][src]Struct kul_core::SourceIterItem

pub struct SourceIterItem<SourcePosition> {
    pub ch: char,
    pub pos: SourcePosition,
}

Item produced by a SourceStream iterator that represents its next character, possibly with positional information.

Fields

ch: char

A character produced by a source.

pos: SourcePosition

Positional information of the character relative to the original source it is from.

Trait Implementations

impl<SourcePosition: Debug> Debug for SourceIterItem<SourcePosition>[src]

impl<SourcePosition: PartialEq> PartialEq<SourceIterItem<SourcePosition>> for SourceIterItem<SourcePosition>[src]

impl<SourcePosition: Eq> Eq for SourceIterItem<SourcePosition>[src]

impl<SourcePosition: Copy> Copy for SourceIterItem<SourcePosition>[src]

impl<SourcePosition: Clone> Clone for SourceIterItem<SourcePosition>[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl<SourcePosition> Send for SourceIterItem<SourcePosition> where
    SourcePosition: Send

impl<SourcePosition> Sync for SourceIterItem<SourcePosition> where
    SourcePosition: Sync

Blanket Implementations

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto 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, U> Into for T where
    U: From<T>, 
[src]

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

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

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