#[repr(u32)]pub enum ParameterKind {
Int = 0,
Double = 1,
Rational = 2,
Symbol = 3,
Sort = 4,
Ast = 5,
FuncDecl = 6,
Internal = 7,
Zstring = 8,
}Expand description
The different kinds of parameters that can be associated with function symbols.
§See also
Variants§
Int = 0
used for integer parameters.
Double = 1
used for double parameters.
Rational = 2
used for parameters that are rational numbers.
Symbol = 3
used for parameters that are symbols.
Sort = 4
used for sort parameters.
Ast = 5
used for expression parameters.
FuncDecl = 6
used for function declaration parameters.
Internal = 7
used for parameters that are private to Z3. They cannot be accessed.
Zstring = 8
used for string parameters.
Trait Implementations§
Source§impl Clone for ParameterKind
impl Clone for ParameterKind
Source§fn clone(&self) -> ParameterKind
fn clone(&self) -> ParameterKind
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 ParameterKind
impl Debug for ParameterKind
Source§impl Hash for ParameterKind
impl Hash for ParameterKind
Source§impl PartialEq for ParameterKind
impl PartialEq for ParameterKind
impl Copy for ParameterKind
impl Eq for ParameterKind
impl StructuralPartialEq for ParameterKind
Auto Trait Implementations§
impl Freeze for ParameterKind
impl RefUnwindSafe for ParameterKind
impl Send for ParameterKind
impl Sync for ParameterKind
impl Unpin for ParameterKind
impl UnsafeUnpin for ParameterKind
impl UnwindSafe for ParameterKind
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