Struct Dynamic

Source
pub struct Dynamic<'st>(/* private fields */);
Expand description

This type wraps terms loosing all static type information. It is particular useful when constructing terms dynamically.

Implementations§

Source§

impl<'st> Dynamic<'st>

Source

pub fn from_term_sort(t: STerm<'st>, sort: Sort<'st>) -> Self

Construct a dynamic term from a term and a sort.

Source

pub fn sort(&self) -> Sort<'st>

Returns the sort of the dynamic term.

Source

pub fn as_int(&self) -> Result<Int<'st>, Error>

Attempt to cast the dynamic into an Int if the sort matches.

Source

pub fn as_bool(&self) -> Result<Bool<'st>, Error>

Attempt to cast the dynamic into a Bool if the sort matches.

Trait Implementations§

Source§

impl<'st> Clone for Dynamic<'st>

Source§

fn clone(&self) -> Dynamic<'st>

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<'st> Debug for Dynamic<'st>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Display for Dynamic<'_>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'st> From<(STerm<'st>, Sort<'st>)> for Dynamic<'st>

Source§

fn from((t, sort): (STerm<'st>, Sort<'st>)) -> Self

Converts to this type from the input type.
Source§

impl<'st, const M: usize> From<BitVec<'st, M>> for Dynamic<'st>

Source§

fn from(i: BitVec<'st, M>) -> Self

Converts to this type from the input type.
Source§

impl<'st> From<Bool<'st>> for Dynamic<'st>

Source§

fn from(b: Bool<'st>) -> Self

Converts to this type from the input type.
Source§

impl<'st, T> From<Const<'st, T>> for Dynamic<'st>
where T: Into<Dynamic<'st>>,

Source§

fn from(c: Const<'st, T>) -> Self

Converts to this type from the input type.
Source§

impl<'st> From<Dynamic<'st>> for STerm<'st>

Source§

fn from(d: Dynamic<'st>) -> Self

Converts to this type from the input type.
Source§

impl<'st> From<Int<'st>> for Dynamic<'st>

Source§

fn from(i: Int<'st>) -> Self

Converts to this type from the input type.
Source§

impl<'st> From<Real<'st>> for Dynamic<'st>

Source§

fn from(i: Real<'st>) -> Self

Converts to this type from the input type.
Source§

impl<'st> Sorted<'st> for Dynamic<'st>

Source§

type Inner = Dynamic<'st>

The inner type of the term. This is used for Const<'st, T> where the inner type is T.
Source§

fn sort(&self) -> Sort<'st>

The sort of the term.
Source§

fn is_sort(_sort: Sort<'st>) -> bool

Check if a sort is of this type.
Source§

fn st(&self) -> &'st Storage

The storage associated with any term of this sort.
Source§

fn sterm(self) -> STerm<'st>

Constructy the smtlib AST representation of the term with associated storage.
Source§

fn term(self) -> &'st Term<'st>

Construct the smtlib AST representation of term.
Source§

fn from_dynamic(d: Dynamic<'st>) -> Self
where Self: From<(STerm<'st>, Sort<'st>)>,

Casts a dynamically typed term into a concrete type
Source§

fn try_from_dynamic(d: Dynamic<'st>) -> Option<Self>
where Self: From<(STerm<'st>, Sort<'st>)>,

Casts a dynamically typed term into a concrete type iff the dynamic sort matches
Source§

fn into_dynamic(self) -> Dynamic<'st>

Casts the term into a dynamic term which looses static types and stores the sort dynamically.
Source§

fn _eq(self, other: impl IntoWithStorage<'st, Self::Inner>) -> Bool<'st>

Construct the term representing (= self other)
Source§

fn _neq(self, other: impl IntoWithStorage<'st, Self::Inner>) -> Bool<'st>

Construct the term representing (distinct self other)
Source§

impl<'st> Copy for Dynamic<'st>

Auto Trait Implementations§

§

impl<'st> Freeze for Dynamic<'st>

§

impl<'st> !RefUnwindSafe for Dynamic<'st>

§

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

§

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

§

impl<'st> Unpin for Dynamic<'st>

§

impl<'st> !UnwindSafe for Dynamic<'st>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<'st, T> IntoWithStorage<'st, T> for T

Source§

fn into_with_storage(self, _st: &'st Storage) -> T

Construct a STerm with the presence of Storage
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.