#[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)>
Returns 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.
Auto Trait Implementations§
impl Freeze for ParseThemeError
impl RefUnwindSafe for ParseThemeError
impl Send for ParseThemeError
impl Sync for ParseThemeError
impl Unpin for ParseThemeError
impl UnwindSafe for ParseThemeError
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more