[][src]Struct smt2::syntax::response::Definition

pub struct Definition {
    pub rec: bool,
    pub declarations: Vec<Located<Declaration>>,
    pub bodies: Vec<Located<Term>>,
    pub comments: String,
}

Model function definition. <model_response> ::= ( define-fun <function_def> ) | ( define-fun-rec <function_def> ) | ( define-funs-rec ( <function_dec>n+1 ) ( n+1 ) ) <function_def> ::= ( <sorted_var>* )

Fields

rec: booldeclarations: Vec<Located<Declaration>>bodies: Vec<Located<Term>>comments: String

Trait Implementations

impl Display for Definition[src]

impl Parsable for Definition[src]

Auto Trait Implementations

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