#[repr(u32)]pub enum SymbolKind {
Int = 0,
String = 1,
}Expand description
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§
Int = 0
An integer symbol.
This corresponds to Z3_INT_SYMBOL in the C API.
String = 1
A string symbol.
This corresponds to Z3_STRING_SYMBOL in the C API.
Trait Implementations§
Source§impl Clone for SymbolKind
impl Clone for SymbolKind
Source§fn clone(&self) -> SymbolKind
fn clone(&self) -> SymbolKind
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SymbolKind
impl Debug for SymbolKind
Source§impl Hash for SymbolKind
impl Hash for SymbolKind
Source§impl PartialEq for SymbolKind
impl PartialEq for SymbolKind
impl Copy for SymbolKind
impl Eq for SymbolKind
impl StructuralPartialEq for SymbolKind
Auto Trait Implementations§
impl Freeze for SymbolKind
impl RefUnwindSafe for SymbolKind
impl Send for SymbolKind
impl Sync for SymbolKind
impl Unpin for SymbolKind
impl UnwindSafe for SymbolKind
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more