[][src]Enum html_minifier::js::ReservedChar

pub enum ReservedChar {
    Comma,
    OpenParenthese,
    CloseParenthese,
    OpenCurlyBrace,
    CloseCurlyBrace,
    OpenBracket,
    CloseBracket,
    Colon,
    SemiColon,
    Dot,
    Quote,
    DoubleQuote,
    ExclamationMark,
    QuestionMark,
    Slash,
    Modulo,
    Star,
    Minus,
    Plus,
    EqualSign,
    Backslash,
    Space,
    Tab,
    Backline,
    LessThan,
    SuperiorThan,
    Pipe,
    Ampersand,
}

Variants

Comma
OpenParenthese
CloseParenthese
OpenCurlyBrace
CloseCurlyBrace
OpenBracket
CloseBracket
Colon
SemiColon
Dot
Quote
DoubleQuote
ExclamationMark
QuestionMark
Slash
Modulo
Star
Minus
Plus
EqualSign
Backslash
Space
Tab
Backline
LessThan
SuperiorThan
Pipe
Ampersand

Implementations

impl ReservedChar[src]

pub fn is_white_character(&self) -> bool[src]

Trait Implementations

impl Clone for ReservedChar[src]

impl Copy for ReservedChar[src]

impl Debug for ReservedChar[src]

impl Display for ReservedChar[src]

impl Eq for ReservedChar[src]

impl Hash for ReservedChar[src]

impl Ord for ReservedChar[src]

impl PartialEq<ReservedChar> for ReservedChar[src]

impl PartialOrd<ReservedChar> for ReservedChar[src]

impl StructuralEq for ReservedChar[src]

impl StructuralPartialEq for ReservedChar[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

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

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

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[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.