Struct scan_rules::scanner::runtime::ScanA [] [src]

pub struct ScanA<S>(_);

Runtime scanner that delegates to a static scanner.

See: scan_a.

Trait Implementations

impl<'a, S> ScanStr<'a> for ScanA<S> where S: ScanFromStr<'a>
[src]

type Output = S::Output

The type that the implementation scans into.

fn scan(&mut self, s: &'a str) -> Result<(Self::Output, usize)ScanErrorKind>

Perform a scan on the given input. Read more