Enum scan_rules::scanner::QuotedString [] [src]

pub enum QuotedString {}

Scans a quoted string.

Specifically, it scans the quoting format used by the Debug formatter for strings.

The scanned string has all escape sequences expanded to their values, and the surrounding quotes removed.

Trait Implementations

impl<'a> ScanFromStr<'a> for QuotedString
[src]

The type that the implementation scans into. This does not have to be the same as the implementing type, although it typically will be. Read more

Perform a scan on the given input. Read more

Indicates whether or not the scanner wants its input to have leading "junk", such as whitespace, stripped. Read more