[][src]Struct smt2::ConstructorDeclaration

pub struct ConstructorDeclaration<E: Environment> {
    pub id: E::Ident,
    pub selectors: Vec<SelectorDeclaration<E>>,
}

Fields

id: E::Ident

Constructor identifier.

selectors: Vec<SelectorDeclaration<E>>

Selectors.

Implementations

impl<E: Environment> ConstructorDeclaration<E>[src]

pub fn simple<Id: Into<E::Ident>>(id: Id) -> ConstructorDeclaration<E>[src]

Trait Implementations

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

Auto Trait Implementations

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

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

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

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

impl<E> UnwindSafe for ConstructorDeclaration<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.