Enum term_transcript::svg::RgbColorParseError
source · #[non_exhaustive]
pub enum RgbColorParseError {
NotAscii,
NoHashPrefix,
IncorrectLen(usize),
IncorrectDigit(ParseIntError),
}
Available on crate feature
svg
only.Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
NotAscii
Color string contains non-ASCII chars.
NoHashPrefix
The color does not have a #
prefix.
IncorrectLen(usize)
The color has incorrect string length (not 1 or 2 chars per color channel).
The byte length of the string (including 1 char for the #
prefix)
is provided within this variant.
IncorrectDigit(ParseIntError)
Error parsing color channel value.
Trait Implementations§
source§impl Debug for RgbColorParseError
impl Debug for RgbColorParseError
source§impl Display for RgbColorParseError
impl Display for RgbColorParseError
source§impl Error for RgbColorParseError
impl Error for RgbColorParseError
source§fn source(&self) -> Option<&(dyn StdError + 'static)>
fn source(&self) -> Option<&(dyn StdError + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()