[][src]Enum voile_util::axiom::Axiom

pub enum Axiom {
    Postulated(UID),
    Generated(UIDDBI),
    Unimplemented(UIDGI),
    Implicit(UID),
}

Postulated value (or temporarily irreducible expressions), aka axioms.

Variants

Postulated(UID)

Functions without implementation.

Generated(UIDDBI)

Lambda parameters during type-checking. (usually will be replaced with Val::var after the expression is type-checked).

Unimplemented(UIDGI)

Usages of definitions when they're not yet implemented. (usually will be replaced with Val::glob after implemented).

Implicit(UID)

Implicit parameters during type-checking.

Methods

impl Axiom[src]

pub fn unique_id(&self) -> UID[src]

Trait Implementations

impl Clone for Axiom[src]

impl Copy for Axiom[src]

impl Eq for Axiom[src]

impl Ord for Axiom[src]

impl PartialEq<Axiom> for Axiom[src]

impl PartialOrd<Axiom> for Axiom[src]

impl Display for Axiom[src]

impl Debug for Axiom[src]

impl Hash for Axiom[src]

Auto Trait Implementations

impl Send for Axiom

impl Sync for Axiom

impl Unpin for Axiom

impl UnwindSafe for Axiom

impl RefUnwindSafe for Axiom

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[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.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> RuleType for T where
    T: Copy + Eq + Ord + Hash + Debug
[src]