Struct mm0b_parser::ThmRef[][src]

pub struct ThmRef<'a> {
    pub tid: ThmId,
    // some fields omitted
}

A reference to an entry in the theorem table.

Fields

tid: ThmId

The index into the theorem table.

Implementations

impl<'a> ThmRef<'a>[src]

#[must_use]
pub fn args(&self) -> &[Arg]

Notable traits for &'_ [u8]

impl<'_> Read for &'_ [u8]impl<'_> Write for &'_ mut [u8]
[src]

The list of arguments of this axiom/theorem.

#[must_use]
pub fn unify(&self) -> UnifyIter<'a>

Notable traits for UnifyIter<'a>

impl<'a> Iterator for UnifyIter<'a> type Item = Result<UnifyCmd, ParseError>;
[src]

The beginning of the unify stream.

Trait Implementations

impl<'a> Clone for ThmRef<'a>[src]

impl<'a> Copy for ThmRef<'a>[src]

impl<'a> Debug for ThmRef<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for ThmRef<'a>

impl<'a> Send for ThmRef<'a>

impl<'a> Sync for ThmRef<'a>

impl<'a> Unpin for ThmRef<'a>

impl<'a> UnwindSafe for ThmRef<'a>

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.