Enum ast_grep_core::matcher::PatternError
source · pub enum PatternError {
TSParse(TSParseError),
NoContent(String),
MultipleNode(String),
InvalidKind(KindMatcherError),
NoSelectorInContext {
context: String,
selector: String,
},
}
Variants§
TSParse(TSParseError)
NoContent(String)
MultipleNode(String)
InvalidKind(KindMatcherError)
NoSelectorInContext
Trait Implementations§
source§impl Debug for PatternError
impl Debug for PatternError
source§impl Display for PatternError
impl Display for PatternError
source§impl Error for PatternError
impl Error for PatternError
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<KindMatcherError> for PatternError
impl From<KindMatcherError> for PatternError
source§fn from(source: KindMatcherError) -> Self
fn from(source: KindMatcherError) -> Self
Converts to this type from the input type.