Enum read_token::ParseStringError [] [src]

pub enum ParseStringError {
    ExpectedFourHexadecimals,
    ExpectedHexadecimal,
    ExpectedValidUnicode,
    ExpectedValidEscapeCharacter,
}

Contains errors when parsing a string.

Variants

Expected four hexadecimals, found less characters

Expected character 0-9a-fA-F

Found four hexadecimals, but not an invalid unicode character

A character escape \x is invalid

Trait Implementations

impl Copy for ParseStringError
[src]

impl Clone for ParseStringError
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ParseStringError
[src]

Formats the value using the given formatter.

impl Eq for ParseStringError
[src]

impl PartialEq for ParseStringError
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Display for ParseStringError
[src]

Formats the value using the given formatter. Read more