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

integer parameters.

This corresponds to Z3_PK_UINT in the C API.

boolean parameters.

This corresponds to Z3_PK_BOOL in the C API.

double parameters.

This corresponds to Z3_PK_DOUBLE in the C API.

symbol parameters.

This corresponds to Z3_PK_SYMBOL in the C API.

string parameters.

This corresponds to Z3_PK_STRING in the C API.

all internal parameter kinds which are not exposed in the API.

This corresponds to Z3_PK_OTHER in the C API.

invalid parameter.

This corresponds to Z3_PK_INVALID in the C API.

Trait Implementations

impl Debug for ParamKind
[src]

[src]

Formats the value using the given formatter. Read more

impl Copy for ParamKind
[src]

impl Clone for ParamKind
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq for ParamKind
[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 ParamKind
[src]

impl Hash for ParamKind
[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 ParamKind

impl Sync for ParamKind