[][src]Enum azul_css_parser::CssColorParseError

pub enum CssColorParseError<'a> {
    InvalidColor(&'a str),
    InvalidFunctionName(&'a str),
    InvalidColorComponent(u8),
    IntValueParseErr(ParseIntError),
    FloatValueParseErr(ParseFloatError),
    FloatValueOutOfRange(f32),
    MissingColorComponent(CssColorComponent),
    ExtraArguments(&'a str),
    UnclosedColor(&'a str),
    EmptyInput,
    DirectionParseError(CssDirectionParseError<'a>),
    UnsupportedDirection(&'a str),
    InvalidPercentage(PercentageParseError),
}

Variants

InvalidColor(&'a str)
InvalidFunctionName(&'a str)
InvalidColorComponent(u8)
IntValueParseErr(ParseIntError)
FloatValueParseErr(ParseFloatError)
FloatValueOutOfRange(f32)
MissingColorComponent(CssColorComponent)
ExtraArguments(&'a str)
UnclosedColor(&'a str)
EmptyInput
DirectionParseError(CssDirectionParseError<'a>)
UnsupportedDirection(&'a str)
InvalidPercentage(PercentageParseError)

Trait Implementations

impl<'a> Clone for CssColorParseError<'a>[src]

impl<'a> Debug for CssColorParseError<'a>[src]

impl<'a> Display for CssColorParseError<'a>[src]

impl<'a> From<CssColorParseError<'a>> for CssParsingError<'a>[src]

impl<'a> From<CssColorParseError<'a>> for CssShadowParseError<'a>[src]

impl<'a> From<CssColorParseError<'a>> for CssBackgroundParseError<'a>[src]

impl<'a> From<CssColorParseError<'a>> for CssGradientStopParseError<'a>[src]

impl<'a> From<CssDirectionParseError<'a>> for CssColorParseError<'a>[src]

impl<'a> From<ParseFloatError> for CssColorParseError<'a>[src]

impl<'a> From<ParseIntError> for CssColorParseError<'a>[src]

impl<'a> PartialEq<CssColorParseError<'a>> for CssColorParseError<'a>[src]

impl<'a> StructuralPartialEq for CssColorParseError<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for CssColorParseError<'a>

impl<'a> Send for CssColorParseError<'a>

impl<'a> Sync for CssColorParseError<'a>

impl<'a> Unpin for CssColorParseError<'a>

impl<'a> UnwindSafe for CssColorParseError<'a>

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.