Enum z3_sys::ParameterKind
[−]
[src]
#[repr(u32)]pub enum ParameterKind { Int, Double, Rational, Symbol, Sort, AST, FuncDecl, }
The different kinds of parameters that can be associated with function symbols.
This corresponds to Z3_parameter_kind in the C API.
See also:
Variants
IntAn integer parameter.
This corresponds to Z3_PARAMETER_INT in the C API.
DoubleA double parameter.
This corresponds to Z3_PARAMETER_DOUBLE in the C API.
RationalA rational number parameter.
This corresponds to Z3_PARAMETER_RATIONAL in the C API.
SymbolA symbol parameter.
This corresponds to Z3_PARAMETER_SYMBOL in the C API.
SortA sort parameter.
This corresponds to Z3_PARAMETER_SORT in the C API.
ASTAn expression parameter.
This corresponds to Z3_PARAMETER_AST in the C API.
FuncDeclA function declaration parameter.
This corresponds to Z3_PARAMETER_FUNC_DECL in the C API.
Trait Implementations
impl Debug for ParameterKind[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result[src]
Formats the value using the given formatter. Read more
impl Copy for ParameterKind[src]
impl Clone for ParameterKind[src]
fn clone(&self) -> ParameterKind[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 ParameterKind[src]
fn eq(&self, __arg_0: &ParameterKind) -> 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 !=.