Skip to main content

Term

Enum Term 

Source
pub enum Term {
Show 18 variants Truth, Unit, Text, Literal(String), NameWord(Vec<String>), Int { signed: bool, bits: u16, }, Float { bits: u16, }, Bytes { len: Option<usize>, }, Hex(Box<Term>), Decimal(Box<Term>), Base64(Box<Term>), Opt(Box<Term>), Seq(Box<Term>), Map(Box<Term>, Box<Term>), Product(Vec<Member>), Choice(Vec<Term>), Named { words: Vec<String>, body: Box<Term>, }, Reference(Vec<String>),
}
Expand description

A shape, as a value.

Variants§

§

Truth

§

Unit

§

Text

§

Literal(String)

§

NameWord(Vec<String>)

§

Int

Fields

§signed: bool
§bits: u16
§

Float

Fields

§bits: u16
§

Bytes

Fields

§

Hex(Box<Term>)

§

Decimal(Box<Term>)

§

Base64(Box<Term>)

§

Opt(Box<Term>)

§

Seq(Box<Term>)

§

Map(Box<Term>, Box<Term>)

§

Product(Vec<Member>)

§

Choice(Vec<Term>)

§

Named

Fields

§words: Vec<String>
§body: Box<Term>
§

Reference(Vec<String>)

Implementations§

Source§

impl Term

Source

pub fn fold<A>(&self, alg: &A) -> A::Ty
where A: ShapeAlg + FieldAlg,

Folds this term into whichever algebra an interpretation provides.

This is the reader: a term written by one host is interpreted by another without either naming the other’s types. Reading and writing are checked against each other, since folding a written term with any interpretation answers what interpreting the original directly does.

Source

pub fn resolved(&self) -> Self

Answers with this term, with every reference replaced by the shape its name introduces.

A fold cannot do this: it builds from the leaves upward, so a reference reaches it before the name it uses has been seen. A term holds the whole shape at once, which is what makes a name resolvable — and is why an interpretation that must decide a value, rather than describe one, reads a resolved term.

A name that would resolve into itself is left as a reference, since expanding it never ends.

Trait Implementations§

Source§

impl Clone for Term

Source§

fn clone(&self) -> Term

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for Term

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'de> Deserialize<'de> for Term

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl Eq for Term

Source§

impl PartialEq for Term

Source§

fn eq(&self, other: &Term) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl Serialize for Term

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl StructuralPartialEq for Term

Auto Trait Implementations§

§

impl Freeze for Term

§

impl RefUnwindSafe for Term

§

impl Send for Term

§

impl Sync for Term

§

impl Unpin for Term

§

impl UnsafeUnpin for Term

§

impl UnwindSafe for Term

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<This> ShapeProgramExt<This> for This

Source§

fn compile_shape<Program>( &self, program: Program, ) -> <Program as ShapeProgramAlg<This>>::Ty
where Program: ShapeProgramAlg<This>,

Folds a declaration with this interpretation.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = !

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.