Enum z3_sys::AstPrintMode
[−]
[src]
#[repr(u32)]pub enum AstPrintMode { SmtLibFull, LowLevel, SmtLib2Compliant, }
Z3 pretty printing modes (See Z3_set_ast_print_mode).
This corresponds to Z3_ast_print_mode in the C API.
Variants
SmtLibFullPrint AST nodes in SMTLIB verbose format.
This corresponds to Z3_PRINT_SMTLIB_FULL in the C API.
LowLevelPrint AST nodes using a low-level format.
This corresponds to Z3_PRINT_LOW_LEVEL in the C API.
SmtLib2CompliantPrint AST nodes in SMTLIB 2.x compliant format.
This corresponds to Z3_PRINT_SMTLIB2_COMPLIANT in the C API.
Trait Implementations
impl Debug for AstPrintMode[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result[src]
Formats the value using the given formatter. Read more
impl Copy for AstPrintMode[src]
impl Clone for AstPrintMode[src]
fn clone(&self) -> AstPrintMode[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 AstPrintMode[src]
fn eq(&self, __arg_0: &AstPrintMode) -> 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 !=.