Enum z3_sys::AstKind
[−]
[src]
#[repr(u32)]pub enum AstKind { Numeral, App, Var, Quantifier, Sort, FuncDecl, Unknown, }
The different kinds of Z3 AST (abstract syntax trees). That is, terms, formulas and types.
This corresponds to Z3_ast_kind in the C API.
Variants
Numeralnumeral constants
This corresponds to Z3_NUMERAL_AST in the C API.
Appconstant and applications
This corresponds to Z3_APP_AST in the C API.
Varbound variables
This corresponds to Z3_VAR_AST in the C API.
Quantifierquantifiers
This corresponds to Z3_QUANTIFIER_AST in the C API.
Sortsort
This corresponds to Z3_SORT_AST in the C API.
FuncDeclfunction declaration
This corresponds to Z3_FUNC_DECL_AST in the C API.
Unknowninternal
This corresponds to Z3_UNKNOWN_AST in the C API.
Trait Implementations
impl Debug for AstKind[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result[src]
Formats the value using the given formatter. Read more
impl Copy for AstKind[src]
impl Clone for AstKind[src]
fn clone(&self) -> AstKind[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl PartialEq for AstKind[src]
fn eq(&self, __arg_0: &AstKind) -> bool[src]
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &Rhs) -> bool1.0.0[src]
This method tests for !=.