[][src]Trait combinedfun::traits::Recordable

pub trait Recordable {
    type Output;
    fn record(self, later: Self) -> Self::Output;
}

This trait allows recording what part of an input was consumed by a parser.

Associated Types

type Output

Loading content...

Required methods

fn record(self, later: Self) -> Self::Output

Loading content...

Implementations on Foreign Types

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

type Output = &'a str

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

type Output = &'a [T]

Loading content...

Implementors

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

type Output = I::Output

Loading content...