Skip to main content

Desc

Struct Desc 

Source
pub struct Desc { /* private fields */ }
Expand description

A canonical description, built by writing and read as bytes.

The bytes are the whole point: they are what gets stored, what gets hashed into the Tag, and what a binding in another language has to produce exactly. Nothing here depends on Rust.

Implementations§

Source§

impl Desc

Source

pub fn new() -> Desc

An empty description.

Source

pub fn of<T: Shape + ?Sized>() -> Desc

The description of T.

Source

pub fn from_bytes(bytes: impl Into<Vec<u8>>) -> Desc

A description someone else produced, from the catalogue or the wire.

Source

pub fn as_bytes(&self) -> &[u8]

The bytes, which are what gets stored.

Source

pub fn as_text(&self) -> String

The description as text, for a message or a log line. It is all ASCII apart from names, which are UTF-8, so this never fails in practice.

Source

pub fn tag(&self) -> Tag

The tag: the first 128 bits of the BLAKE3 hash of these bytes.

Source

pub fn is_empty(&self) -> bool

Whether anything has been written.

Source

pub fn prim(&mut self, p: Prim)

A primitive.

Source

pub fn optional(&mut self, inner: Describe)

An optional value.

Source

pub fn list(&mut self, inner: Describe)

A sequence.

Source

pub fn map(&mut self, key: Describe, value: Describe)

A mapping, key type then value type.

Source

pub fn vector(&mut self, dim: u32, metric: Metric)

A vector of dim dimensions compared with metric.

Source

pub fn reference(&mut self, name: &str)

A named reference, which is what a recursive type writes on the way down. Written for you by Desc::strukt; call it directly only when building a description by hand.

Source

pub fn strukt(&mut self, name: &str, fields: &[(&str, Describe)])

A struct, with its fields in declaration order.

Order is layout, so it is part of the shape and reordering fields is a breaking change (15 section 5). That is why this takes a slice rather than a map.

If name is already being written further up, this writes a reference instead and does not descend, which is what makes a linked list or a tree describable at all.

Source

pub fn enumeration(&mut self, name: &str, variants: &[&str])

An enumeration, with its variants in declaration order.

Variants carry no payload here. A variant that carries data is a struct in a field of its own, which is how it has to be written until the grammar grows a form for it.

Trait Implementations§

Source§

impl Clone for Desc

Source§

fn clone(&self) -> Desc

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 Desc

Source§

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

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

impl Default for Desc

Source§

fn default() -> Desc

Returns the “default value” for a type. Read more
Source§

impl Eq for Desc

Source§

impl PartialEq for Desc

Source§

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

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

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

Inequality operator !=. Read more
Source§

impl StructuralPartialEq for Desc

Auto Trait Implementations§

§

impl Freeze for Desc

§

impl RefUnwindSafe for Desc

§

impl Send for Desc

§

impl Sync for Desc

§

impl Unpin for Desc

§

impl UnsafeUnpin for Desc

§

impl UnwindSafe for Desc

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> 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<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.