Struct Bool

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

A Bool is a term containing a boolean. You can read more here..

Implementations§

Source§

impl<'st> Bool<'st>

Source

pub fn new(st: &'st Storage, value: bool) -> Bool<'st>

Construct a new bool.

Source§

impl<'st> Bool<'st>

Source

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

Returns the sort of bools.

Source

pub fn implies(self, other: Bool<'st>) -> Bool<'st>

Construct the term expressing (==> self other).

The value of the returned boolean is true if:

  • self is false
  • or other is true
Source

pub fn ite<T: Sorted<'st> + From<(STerm<'st>, Sort<'st>)>>( self, then: T, otherwise: T, ) -> T

Construct the term expressing (ite self then otherwise).

This is similar to the ternary condition operator, and an if statement:

  • C-style notation: self ? then : otherwise
  • Rust notation: if self { then } else { otherwise }

Trait Implementations§

Source§

impl<'st> BitAnd<Bool<'st>> for bool

Source§

type Output = Bool<'st>

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: Bool<'st>) -> Self::Output

Performs the & operation. Read more
Source§

impl<'st, R> BitAnd<R> for Bool<'st>
where R: IntoWithStorage<'st, Bool<'st>>,

Source§

type Output = Bool<'st>

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: R) -> Self::Output

Performs the & operation. Read more
Source§

impl<'st, R> BitAndAssign<R> for Bool<'st>
where R: IntoWithStorage<'st, Bool<'st>>,

Source§

fn bitand_assign(&mut self, rhs: R)

Performs the &= operation. Read more
Source§

impl<'st> BitOr<Bool<'st>> for bool

Source§

type Output = Bool<'st>

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: Bool<'st>) -> Self::Output

Performs the | operation. Read more
Source§

impl<'st, R> BitOr<R> for Bool<'st>
where R: IntoWithStorage<'st, Bool<'st>>,

Source§

type Output = Bool<'st>

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: R) -> Self::Output

Performs the | operation. Read more
Source§

impl<'st, R> BitOrAssign<R> for Bool<'st>
where R: IntoWithStorage<'st, Bool<'st>>,

Source§

fn bitor_assign(&mut self, rhs: R)

Performs the |= operation. Read more
Source§

impl<'st> BitXor<Bool<'st>> for bool

Source§

type Output = Bool<'st>

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: Bool<'st>) -> Self::Output

Performs the ^ operation. Read more
Source§

impl<'st, R> BitXor<R> for Bool<'st>
where R: IntoWithStorage<'st, Bool<'st>>,

Source§

type Output = Bool<'st>

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: R) -> Self::Output

Performs the ^ operation. Read more
Source§

impl<'st, R> BitXorAssign<R> for Bool<'st>
where R: IntoWithStorage<'st, Bool<'st>>,

Source§

fn bitxor_assign(&mut self, rhs: R)

Performs the ^= operation. Read more
Source§

impl<'st> Clone for Bool<'st>

Source§

fn clone(&self) -> Bool<'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 Debug for Bool<'_>

Source§

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

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

impl Display for Bool<'_>

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 Bool<'st>

Source§

fn from((t, _): (STerm<'st>, Sort<'st>)) -> 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> From<Bool<'st>> for STerm<'st>

Source§

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

Converts to this type from the input type.
Source§

impl<'st> From<Const<'st, Bool<'st>>> for Bool<'st>

Source§

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

Converts to this type from the input type.
Source§

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

Source§

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

Converts to this type from the input type.
Source§

impl<'st> IntoWithStorage<'st, Bool<'st>> for Const<'st, Bool<'st>>

Source§

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

Construct a STerm with the presence of Storage
Source§

impl<'st> IntoWithStorage<'st, Bool<'st>> for bool

Source§

fn into_with_storage(self, st: &'st Storage) -> Bool<'st>

Construct a STerm with the presence of Storage
Source§

impl<'st> Not for Bool<'st>

Source§

type Output = Bool<'st>

The resulting type after applying the ! operator.
Source§

fn not(self) -> Self::Output

Performs the unary ! operation. Read more
Source§

impl<'st> StaticSorted<'st> for Bool<'st>

Source§

const AST_SORT: Sort<'static>

The sort of this sort.
Source§

type Inner = Bool<'st>

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

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

The storage associated with the term.
Source§

fn sort() -> Sort<'st>

The sort of this sort.
Source§

fn new_const(st: &'st Storage, name: &str) -> Const<'st, Self>

Construct a new constante of this sort.
Source§

impl<'st> Copy for Bool<'st>

Auto Trait Implementations§

§

impl<'st> Freeze for Bool<'st>

§

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

§

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

§

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

§

impl<'st> Unpin for Bool<'st>

§

impl<'st> !UnwindSafe for Bool<'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<'st, T> Sorted<'st> for T
where T: StaticSorted<'st>,

Source§

type Inner = <T as StaticSorted<'st>>::Inner

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§

fn labeled(self) -> (Label<Self>, Self::Inner)
where Self::Inner: From<STerm<'st>>,

Wraps the term in a a label, which can be used to extract information from models at a later point.
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.