Enum syntect::parsing::ParseScopeError
source · #[non_exhaustive]
pub enum ParseScopeError {
TooLong,
TooManyAtoms,
}
Expand description
Not all strings are valid scopes
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.
TooLong
Due to a limitation of the current optimized internal representation scopes can be at most 8 atoms long
TooManyAtoms
The internal representation uses 16 bits per atom, so if all scopes ever used by the program have more than 2^16-2 atoms, things break
Trait Implementations§
source§impl Debug for ParseScopeError
impl Debug for ParseScopeError
source§impl Display for ParseScopeError
impl Display for ParseScopeError
source§impl Error for ParseScopeError
impl Error for ParseScopeError
1.30.0 · 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.