Enum scan_rules::input::FuzzySpace [] [src]

pub enum FuzzySpace {}

Requires that whitespace in the pattern exists in the input, but the exact kind of space doesn't matter.

Trait Implementations

impl Debug for FuzzySpace
[src]

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

Formats the value using the given formatter.

impl SkipSpace for FuzzySpace
[src]

fn match_spaces(inp: &str, pat: &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.