Struct trivial_kernel::table::Table_ [−][src]
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_
fn get_sort(&self, idx: u8) -> Option<&Self::Sort>[src]
fn nr_sorts(&self) -> u8[src]
fn get_term(&self, idx: u32) -> Option<&Self::Term>[src]
fn nr_terms(&self) -> u32[src]
fn get_theorem(&self, idx: u32) -> Option<&Self::Theorem>[src]
fn nr_theorems(&self) -> u32[src]
fn get_unify_commands(&self, idx: Range<usize>) -> Option<&[Command<Unify>]>[src]
fn get_unify_command(&self, idx: usize) -> Option<&Command<Unify>>[src]
fn get_binders(&self, idx: Range<usize>) -> Option<&[Self::Var]>[src]
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]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,