Enum url::SyntaxViolation[][src]

pub enum SyntaxViolation {
    Backslash,
    C0SpaceIgnored,
    EmbeddedCredentials,
    ExpectedDoubleSlash,
    ExpectedFileDoubleSlash,
    FileWithHostAndWindowsDrive,
    NonUrlCodePoint,
    NullInFragment,
    PercentDecode,
    TabOrNewlineIgnored,
    UnencodedAtSign,
}

Non-fatal syntax violations that can occur during parsing.

Variants

Methods

impl SyntaxViolation
[src]

Trait Implementations

impl PartialEq for SyntaxViolation
[src]

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

This method tests for !=.

impl Eq for SyntaxViolation
[src]

impl Clone for SyntaxViolation
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for SyntaxViolation
[src]

impl Debug for SyntaxViolation
[src]

Formats the value using the given formatter. Read more

impl Display for SyntaxViolation
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations