[−][src]Enum z3_sys::ErrorCode
Z3 error codes (See Z3_get_error_code).
This corresponds to Z3_error_code in the C API.
Variants
No error.
This corresponds to Z3_OK in the C API.
User tried to build an invalid (type incorrect) AST.
This corresponds to Z3_SORT_ERROR in the C API.
Index out of bounds.
This corresponds to Z3_IOB in the C API.
Invalid argument was provided.
This corresponds to Z3_INVALID_ARG in the C API.
An error occurred when parsing a string or file.
This corresponds to Z3_PARSER_ERROR in the C API.
Parser output is not available, that is, user didn't invoke
Z3_parse_smtlib_string or
Z3_parse_smtlib_file.
This corresponds to Z3_NO_PARSER in the C API.
Invalid pattern was used to build a quantifier.
This corresponds to Z3_INVALID_PATTERN in the C API.
A memory allocation failure was encountered.
This corresponds to Z3_MEMOUT_FAIL in the C API.
A file could not be accessed.
This corresponds to Z3_FILE_ACCESS_ERRROR in the C API.
An error internal to Z3 occurred.
This corresponds to Z3_INTERNAL_FATAL in the C API.
API call is invalid in the current state.
This corresponds to Z3_INVALID_USAGE in the C API.
Trying to decrement the reference counter of an AST that was
deleted or the reference counter was not initialized with
Z3_inc_ref.
This corresponds to Z3_DEC_REF_ERROR in the C API.
Internal Z3 exception. Additional details can be retrieved
using Z3_get_error_msg.
This corresponds to Z3_EXCEPTION in the C API.
Trait Implementations
impl Clone for ErrorCode[src]
impl Copy for ErrorCode[src]
impl Debug for ErrorCode[src]
impl Eq for ErrorCode[src]
impl Hash for ErrorCode[src]
fn hash<__H: Hasher>(&self, state: &mut __H)[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, 1.3.0[src]
H: Hasher,
impl PartialEq<ErrorCode> for ErrorCode[src]
impl StructuralEq for ErrorCode[src]
impl StructuralPartialEq for ErrorCode[src]
Auto Trait Implementations
impl RefUnwindSafe for ErrorCode
impl Send for ErrorCode
impl Sync for ErrorCode
impl Unpin for ErrorCode
impl UnwindSafe for ErrorCode
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,