Enum z3_sys::SymbolKind
[−]
[src]
#[repr(u32)]pub enum SymbolKind { Int, String, }
The different kinds of symbol.
In Z3, a symbol can be represented using integers and
strings (See Z3_get_symbol_kind).
This corresponds to Z3_symbol_kind in the C API.
See also:
Variants
IntAn integer symbol.
This corresponds to Z3_INT_SYMBOL in the C API.
StringA string symbol.
This corresponds to Z3_STRING_SYMBOL in the C API.
Trait Implementations
impl Debug for SymbolKind[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result[src]
Formats the value using the given formatter. Read more
impl Copy for SymbolKind[src]
impl Clone for SymbolKind[src]
fn clone(&self) -> SymbolKind[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 SymbolKind[src]
fn eq(&self, __arg_0: &SymbolKind) -> 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 !=.