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

pub struct ExactWidth<Then>(_, _);

Runtime scanner that forces exactly width bytes to be consumed.

See: exact_width, exact_width_a.

Trait Implementations

impl<'a, Then> ScanStr<'a> for ExactWidth<Then> where Then: ScanStr<'a>
[src]

type Output = Then::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