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

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

A dynamically typed Ast node.

Implementations

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_string(&self) -> Option<String<'ctx>>[src]

Returns None if the Dynamic is not actually a String

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]

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

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

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

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

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

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

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

impl<'ctx> From<Bool<'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> From<Int<'ctx>> for Dynamic<'ctx>[src]

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

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

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

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

impl<'ctx> PartialEq<Dynamic<'ctx>> 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 String<'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.

Auto Trait Implementations

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

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

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

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

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

Blanket Implementations

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

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

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

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.