[][src]Struct z3::ast::Dynamic

pub struct Dynamic<'ctx> { /* fields omitted */ }

A dynamically typed Ast node.

Methods

impl<'ctx> Dynamic<'ctx>[src]

pub fn from_ast(ast: &impl Ast<'ctx>) -> Self[src]

pub fn as_bool(&self) -> Option<Bool<'ctx>>[src]

Returns None if the Dynamic is not actually a Bool

pub fn as_int(&self) -> Option<Int<'ctx>>[src]

Returns None if the Dynamic is not actually an Int

pub fn as_real(&self) -> Option<Real<'ctx>>[src]

Returns None if the Dynamic is not actually a Real

pub fn as_bv(&self) -> Option<BV<'ctx>>[src]

Returns None if the Dynamic is not actually a BV

pub fn as_array(&self) -> Option<Array<'ctx>>[src]

Returns None if the Dynamic is not actually an Array

pub fn as_datatype(&self) -> Option<Datatype<'ctx>>[src]

Trait Implementations

impl<'ctx> Ast<'ctx> for Dynamic<'ctx>[src]

fn _eq(&self, other: &Self) -> Bool<'ctx>[src]

Compare this Ast with another Ast, and get a Bool representing the result. Read more

fn distinct(&self, other: &[&Self]) -> Bool<'ctx>[src]

Compare this Ast with a list of other Asts, and get a Bool which is true only if all arguments (including Self) are pairwise distinct. Read more

fn get_sort(&self) -> Sort<'ctx>[src]

Get the Sort of the Ast

fn simplify(&self) -> Self[src]

Simplify the Ast. Returns a new Ast which is equivalent, but simplified using algebraic simplification rules, such as constant propagation. Read more

fn substitute<T: Ast<'ctx>>(&self, substitutions: &[(&T, &T)]) -> Self[src]

Performs substitution on the Ast. The slice substitutions contains a list of pairs with a "from" Ast that will be substituted by a "to" Ast. Read more

impl<'ctx> From<Bool<'ctx>> for Dynamic<'ctx>[src]

impl<'ctx> From<Int<'ctx>> for Dynamic<'ctx>[src]

impl<'ctx> From<Real<'ctx>> for Dynamic<'ctx>[src]

impl<'ctx> From<BV<'ctx>> for Dynamic<'ctx>[src]

impl<'ctx> From<Array<'ctx>> for Dynamic<'ctx>[src]

impl<'ctx> From<Set<'ctx>> for Dynamic<'ctx>[src]

impl<'ctx> From<Datatype<'ctx>> for Dynamic<'ctx>[src]

impl<'ctx> From<Dynamic<'ctx>> for Z3_ast[src]

impl<'ctx> Drop for Dynamic<'ctx>[src]

impl<'ctx> PartialEq<Dynamic<'ctx>> for Dynamic<'ctx>[src]

#[must_use] fn ne(&self, other: &Rhs) -> bool1.0.0[src]

This method tests for !=.

impl<'ctx> Clone for Dynamic<'ctx>[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl<'ctx> Eq for Dynamic<'ctx>[src]

impl<'ctx> Display for Dynamic<'ctx>[src]

impl<'ctx> Debug for Dynamic<'ctx>[src]

impl<'ctx> TryFrom<Dynamic<'ctx>> for Bool<'ctx>[src]

type Error = String

The type returned in the event of a conversion error.

impl<'ctx> TryFrom<Dynamic<'ctx>> for Int<'ctx>[src]

type Error = String

The type returned in the event of a conversion error.

impl<'ctx> TryFrom<Dynamic<'ctx>> for Real<'ctx>[src]

type Error = String

The type returned in the event of a conversion error.

impl<'ctx> TryFrom<Dynamic<'ctx>> for BV<'ctx>[src]

type Error = String

The type returned in the event of a conversion error.

impl<'ctx> TryFrom<Dynamic<'ctx>> for Array<'ctx>[src]

type Error = String

The type returned in the event of a conversion error.

impl<'ctx> TryFrom<Dynamic<'ctx>> for Datatype<'ctx>[src]

type Error = String

The type returned in the event of a conversion error.

impl<'ctx> Hash for Dynamic<'ctx>[src]

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0[src]

Feeds a slice of this type into the given [Hasher]. Read more

Auto Trait Implementations

impl<'ctx> !Send for Dynamic<'ctx>

impl<'ctx> Unpin for Dynamic<'ctx>

impl<'ctx> !Sync for Dynamic<'ctx>

impl<'ctx> UnwindSafe for Dynamic<'ctx>

impl<'ctx> RefUnwindSafe for Dynamic<'ctx>

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]