Enum z3_sys::ParamKind
[−]
[src]
#[repr(u32)]pub enum ParamKind { UInt, Bool, Double, Symbol, String, Other, Invalid, }
The different kinds of parameters that can be associated with parameter sets.
(see Z3_mk_params).
This corresponds to Z3_param_kind in the C API.
Variants
UIntinteger parameters.
This corresponds to Z3_PK_UINT in the C API.
Boolboolean parameters.
This corresponds to Z3_PK_BOOL in the C API.
Doubledouble parameters.
This corresponds to Z3_PK_DOUBLE in the C API.
Symbolsymbol parameters.
This corresponds to Z3_PK_SYMBOL in the C API.
Stringstring parameters.
This corresponds to Z3_PK_STRING in the C API.
Otherall internal parameter kinds which are not exposed in the API.
This corresponds to Z3_PK_OTHER in the C API.
Invalidinvalid parameter.
This corresponds to Z3_PK_INVALID in the C API.
Trait Implementations
impl Debug for ParamKind[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result[src]
Formats the value using the given formatter. Read more
impl Copy for ParamKind[src]
impl Clone for ParamKind[src]
fn clone(&self) -> ParamKind[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 ParamKind[src]
fn eq(&self, __arg_0: &ParamKind) -> 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 !=.