Enum scan_rules::input::ExactSpace [] [src]

pub enum ExactSpace {}

Matches all whitespace exactly, and does not skip any.

Trait Implementations

impl Debug for ExactSpace
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.

impl SkipSpace for ExactSpace
[src]

fn match_spaces(a: &str, b: &str) -> Result<(usize, usize)usize>

Given two strings, does the leading whitespace match? Read more

fn skip_space(_: &str) -> usize

Return the number of bytes of leading whitespace in a that should be skipped.