[][src]Enum webidl::LexicalErrorCode

pub enum LexicalErrorCode {
    ExpectedCommentBlockEnd,
    ExpectedDecimalDigit,
    ExpectedEllipsis,
    ExpectedFloatExponent,
    ExpectedHexadecimalDigit,
    ExpectedKeywordInfinity,
    ExpectedStringLiteralEnd,
}

An enum of possible errors that can occur during lexing.

Variants

ExpectedCommentBlockEnd

Occurs when a block comment is not closed (e.g. /* this is a comment). Notably, this can only occur when the end of the file is reached as everything else will always be considered to be a part of the comment.

ExpectedDecimalDigit

Occurs in the specific case of lexing a float literal of the form -. with no following decimal digits.

ExpectedEllipsis

Occurs when .. is lexed with no following ..

ExpectedFloatExponent

Occurs when lexing a float literal that does not provide an exponent after the e (e.g. (582.13e).

ExpectedHexadecimalDigit

Occurs when lexing a hexadecimal literal that does not provide hexadecimal digits after the 0x.

ExpectedKeywordInfinity

Occurs when any leading substring of Infinity follows - but does not complete the keyword.

ExpectedStringLiteralEnd

Occurs when a string literal is not closed (e.g. "this is a string). Notably, this can only occur when the end of the file is reached as everything else will always be considered to be a part of the string.

Trait Implementations

impl Copy for LexicalErrorCode[src]

impl PartialEq<LexicalErrorCode> for LexicalErrorCode[src]

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0
[src]

This method tests for !=.

impl Clone for LexicalErrorCode[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Eq for LexicalErrorCode[src]

impl Debug for LexicalErrorCode[src]

impl Hash for LexicalErrorCode[src]

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0
[src]

Feeds a slice of this type into the given [Hasher]. Read more

Auto Trait Implementations

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]