[][src]Trait abortable_parser::Offsetable

pub trait Offsetable {
    fn get_offset(&self) -> usize;
}

A trait for types that can have an offset as a count of processed items.

Required methods

fn get_offset(&self) -> usize

Loading content...

Implementations on Foreign Types

impl Offsetable for usize[src]

Loading content...

Implementors

impl<'a> Offsetable for StrIter<'a>[src]

impl<'a, T: Debug + 'a> Offsetable for SliceIter<'a, T>[src]

impl<C: Offsetable> Offsetable for Error<C>[src]

Loading content...