Trait xpr::Expression[][src]

pub trait Expression {
    fn as_xpr(&self) -> Xpr<Term<&Self>>
    where
        Self: Sized
, { ... }
fn into_xpr(self) -> Xpr<Term<Self>>
    where
        Self: Sized
, { ... } }
Expand description

A trait for converting an instance into xpr terminals

Provided methods

Wrap a reference of self in an Xpr terminal

Consume self and return as Xpr terminal

Implementors