[][src]Trait combinedfun::traits::HasEof

pub trait HasEof {
    fn at_eof(&self) -> bool;
}

This trait allows checking if an input has reached its end.

Required methods

fn at_eof(&self) -> bool

Loading content...

Implementations on Foreign Types

impl<'a> HasEof for &'a str[src]

impl<'a, T> HasEof for &'a [T][src]

Loading content...

Implementors

impl<I: HasEof, P> HasEof for Span<I, P>[src]

Loading content...