[][src]Struct smt2::SelectorDeclaration

pub struct SelectorDeclaration<E: Environment> {
    pub id: E::Ident,
    pub sort: AbstractGroundSort<E::Sort>,
}

Selector declaration.

Fields

id: E::Ident

Selector identifier.

sort: AbstractGroundSort<E::Sort>

Sort reference.

Trait Implementations

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

Auto Trait Implementations

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

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

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

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

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