Struct mm0b_parser::ThmEntry[][src]

#[repr(C, align(8))]
pub struct ThmEntry { pub num_args: U16<LE>, pub reserved: [u8; 2], pub p_args: U32<LE>, }

An entry in the term table, which describes the “signature” of the axiom/theorem, the information needed to apply the theorem to use it in other theorems.

Fields

num_args: U16<LE>

The number of arguments to the theorem (exprs, not hyps).

reserved: [u8; 2]

Padding.

p_args: U32<LE>

The pointer to an args: [Arg; num_args] array, followed by the theorem’s unify command sequence.

Trait Implementations

impl AsBytes for ThmEntry[src]

impl Clone for ThmEntry[src]

impl Copy for ThmEntry[src]

impl Debug for ThmEntry[src]

impl FromBytes for ThmEntry[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> 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.