Trait rsmt2::parse::IdentParser [] [src]

pub trait IdentParser<Ident, Type, Input>: Copy {
    fn parse_ident(self, _: Input) -> SmtRes<Ident>;
fn parse_type(self, _: Input) -> SmtRes<Type>; }

Can parse identifiers and types. Used for get_model.

For more information refer to the module-level documentation.

Required Methods

Parses an identifier.

Parses a type.

Implementors