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

numeral constants

This corresponds to Z3_NUMERAL_AST in the C API.

constant and applications

This corresponds to Z3_APP_AST in the C API.

bound variables

This corresponds to Z3_VAR_AST in the C API.

quantifiers

This corresponds to Z3_QUANTIFIER_AST in the C API.

sort

This corresponds to Z3_SORT_AST in the C API.

function declaration

This corresponds to Z3_FUNC_DECL_AST in the C API.

internal

This corresponds to Z3_UNKNOWN_AST in the C API.

Trait Implementations

impl Debug for AstKind
[src]

[src]

Formats the value using the given formatter. Read more

impl Copy for AstKind
[src]

impl Clone for AstKind
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq for AstKind
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

1.0.0
[src]

This method tests for !=.

impl Eq for AstKind
[src]

impl Hash for AstKind
[src]

[src]

Feeds this value into the given [Hasher]. Read more

1.3.0
[src]

Feeds a slice of this type into the given [Hasher]. Read more

Auto Trait Implementations

impl Send for AstKind

impl Sync for AstKind