Struct trivial_kernel::table::Table_[][src]

pub struct Table_ {
    pub sorts: Vec<Sort_>,
    pub theorems: Vec<Theorem_>,
    pub terms: Vec<Term_>,
    pub unify: Vec<Command<Unify>>,
    pub binders: Vec<Var_>,
}

Fields

sorts: Vec<Sort_>theorems: Vec<Theorem_>terms: Vec<Term_>unify: Vec<Command<Unify>>binders: Vec<Var_>

Trait Implementations

impl Debug for Table_[src]

impl Default for Table_[src]

impl Table for Table_[src]

type Sort = Sort_

type Term = Term_

type Theorem = Theorem_

type Var = Var_

Auto Trait Implementations

impl RefUnwindSafe for Table_

impl Send for Table_

impl Sync for Table_

impl Unpin for Table_

impl UnwindSafe for Table_

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.