[][src]Struct smt2::typing::Typed

pub struct Typed<T: Typable> { /* fields omitted */ }

Implementations

impl<T: Typable> Typed<T>[src]

pub fn new(t: T, span: Span, sort: GroundSort<T::Sort>) -> Typed<T>[src]

pub fn untyped(t: T, span: Span) -> Typed<T>[src]

pub fn into_inner(self) -> T[src]

impl<T: Typable> Typed<T>[src]

pub fn sort(&self) -> &GroundSort<T::Sort>[src]

pub fn span(&self) -> Span[src]

pub fn type_decoration(
    &mut self,
    checker: &mut TypeChecker<T::Sort>,
    env: &T::Environment
) -> TypeRef<T::Sort>
[src]

Trait Implementations

impl<T: Typable> AsRef<T> for Typed<T>[src]

impl<T: Typable + Display> Display for Typed<T>[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for Typed<T> where
    T: RefUnwindSafe,
    <T as Typable>::Sort: RefUnwindSafe

impl<T> Send for Typed<T> where
    T: Send,
    <T as Typable>::Sort: Send

impl<T> Sync for Typed<T> where
    T: Sync,
    <T as Typable>::Sort: Sync

impl<T> Unpin for Typed<T> where
    T: Unpin,
    <T as Typable>::Sort: Unpin

impl<T> UnwindSafe for Typed<T> where
    T: UnwindSafe,
    <T as Typable>::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> ToString for T where
    T: Display + ?Sized
[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.