Struct trivial_verifier::verifier::Verifier[][src]

pub struct Verifier {
    pub table: Table_,
    pub context: Context<Store_>,
    pub state: State,
    // some fields omitted
}

Fields

table: Table_context: Context<Store_>state: State

Implementations

impl Verifier[src]

pub fn new(data: &[u8]) -> Option<Verifier>[src]

pub fn get_theorem_index(&self, name: &str) -> Option<usize>[src]

pub fn get_theorem_name(&self, idx: usize) -> Option<&str>[src]

pub fn verify_unify(&self) -> KResult[src]

pub fn seek_term(&mut self, idx: usize) -> bool[src]

pub fn seek_theorem(&mut self, idx: usize) -> bool[src]

pub fn seek(&mut self, idx: usize)[src]

pub fn create_theorem_application<'a>(
    &self,
    id: u32,
    context: &'a mut Context<Store_>
) -> KResult<(&'a [PackedPtr], &'a [PackedPtr], PackedPtr)>
[src]

pub fn step<F: FnMut(Action, &Self)>(
    &mut self,
    f: &mut F
) -> KResult<Option<()>>
[src]

pub fn run<F: FnMut(Action, &Self)>(&mut self, f: &mut F) -> KResult<()>[src]

pub fn step_statement<F: FnMut(Action, &Self)>(
    &mut self,
    f: &mut F
) -> KResult<Option<()>>
[src]

pub fn run_statement<F: FnMut(Action, &Self)>(
    &mut self,
    f: &mut F
) -> KResult<()>
[src]

Auto Trait Implementations

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.