[][src]Enum sspds::smt::exprs::SmtExpr

pub enum SmtExpr {
    Comment(String),
    Atom(String),
    List(Vec<SmtExpr>),
}

Variants

Comment(String)
Atom(String)
List(Vec<SmtExpr>)

Trait Implementations

impl Clone for SmtExpr[src]

impl Debug for SmtExpr[src]

impl From<Expression> for SmtExpr[src]

impl<C, E> From<SmtIs<C, E>> for SmtExpr where
    C: Into<String>,
    E: Into<SmtExpr>, 
[src]

impl<C, T, E> From<SmtIte<C, T, E>> for SmtExpr where
    C: Into<SmtExpr>,
    T: Into<SmtExpr>,
    E: Into<SmtExpr>, 
[src]

impl<B> From<SmtLet<B>> for SmtExpr where
    B: Into<SmtExpr>, 
[src]

impl From<SspSmtVar> for SmtExpr[src]

impl From<Type> for SmtExpr[src]

impl SmtFmt for SmtExpr[src]

Auto Trait Implementations

impl RefUnwindSafe for SmtExpr

impl Send for SmtExpr

impl Sync for SmtExpr

impl Unpin for SmtExpr

impl UnwindSafe for SmtExpr

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, 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.