Struct egg::SearchMatches

source ·
pub struct SearchMatches<'a, L: Language> {
    pub eclass: Id,
    pub substs: Vec<Subst>,
    pub ast: Option<Cow<'a, PatternAst<L>>>,
}
Expand description

The result of searching a Searcher over one eclass.

Note that one SearchMatches can contain many found substititions. So taking the length of a list of SearchMatches tells you how many eclasses something was matched in, not how many matches were found total.

Fields§

§eclass: Id

The eclass id that these matches were found in.

§substs: Vec<Subst>

The substitutions for each match.

§ast: Option<Cow<'a, PatternAst<L>>>

Optionally, an ast for the matches used in proof production.

Trait Implementations§

Formats the value using the given formatter. Read more

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.