[][src]Struct smt2::DataTypeDeclaration

pub struct DataTypeDeclaration<E: Environment> {
    pub parameters: Vec<E::Ident>,
    pub constructors: Vec<ConstructorDeclaration<E>>,
}

Data type declaration.

Fields

parameters: Vec<E::Ident>constructors: Vec<ConstructorDeclaration<E>>

Trait Implementations

impl<E: Environment> Clone for DataTypeDeclaration<E> where
    E::Ident: Clone,
    E::Sort: Clone
[src]

Auto Trait Implementations

impl<E> RefUnwindSafe for DataTypeDeclaration<E> where
    <E as Environment>::Ident: RefUnwindSafe,
    <E as Environment>::Sort: RefUnwindSafe

impl<E> Send for DataTypeDeclaration<E> where
    <E as Environment>::Ident: Send,
    <E as Environment>::Sort: Send

impl<E> Sync for DataTypeDeclaration<E> where
    <E as Environment>::Ident: Sync,
    <E as Environment>::Sort: Sync

impl<E> Unpin for DataTypeDeclaration<E> where
    <E as Environment>::Ident: Unpin,
    <E as Environment>::Sort: Unpin

impl<E> UnwindSafe for DataTypeDeclaration<E> where
    <E as Environment>::Ident: UnwindSafe,
    <E as Environment>::Sort: UnwindSafe

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.