Enum syntect::highlighting::ParseThemeError
source · #[non_exhaustive]
pub enum ParseThemeError {
IncorrectUnderlineOption,
IncorrectFontStyle(String),
IncorrectColor,
IncorrectSyntax,
IncorrectSettings,
UndefinedSettings,
UndefinedScopeSettings(String),
ColorShemeScopeIsNotObject,
ColorShemeSettingsIsNotObject,
ScopeSelectorIsNotString(String),
DuplicateSettings,
ScopeParse(ParseScopeError),
}
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.
IncorrectUnderlineOption
IncorrectFontStyle(String)
IncorrectColor
IncorrectSyntax
IncorrectSettings
UndefinedSettings
UndefinedScopeSettings(String)
ColorShemeScopeIsNotObject
ColorShemeSettingsIsNotObject
ScopeSelectorIsNotString(String)
DuplicateSettings
ScopeParse(ParseScopeError)
Trait Implementations§
source§impl Debug for ParseThemeError
impl Debug for ParseThemeError
source§impl Display for ParseThemeError
impl Display for ParseThemeError
source§impl Error for ParseThemeError
impl Error for ParseThemeError
source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + '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()
source§impl From<ParseScopeError> for ParseThemeError
impl From<ParseScopeError> for ParseThemeError
source§fn from(source: ParseScopeError) -> Self
fn from(source: ParseScopeError) -> Self
Converts to this type from the input type.
source§impl From<ParseThemeError> for LoadingError
impl From<ParseThemeError> for LoadingError
source§fn from(source: ParseThemeError) -> Self
fn from(source: ParseThemeError) -> Self
Converts to this type from the input type.