Trait boxworks_lang::convert::ToBoxLang

source ·
pub trait ToBoxLang {
    type Output;

    // Required method
    fn to_box_lang(&self) -> Self::Output;
}
Expand description

Convert a Boxworks data structure to a Box language data structure.

Required Associated Types§

Required Methods§

source

fn to_box_lang(&self) -> Self::Output

Implementations on Foreign Types§

source§

impl ToBoxLang for Char

source§

type Output = Text<'static>

source§

fn to_box_lang(&self) -> Self::Output

source§

impl ToBoxLang for Glue

source§

type Output = Glue<'static>

source§

fn to_box_lang(&self) -> Self::Output

source§

impl ToBoxLang for HList

source§

type Output = Hlist<'static>

source§

fn to_box_lang(&self) -> Self::Output

source§

impl ToBoxLang for Horizontal

source§

type Output = Horizontal<'static>

source§

fn to_box_lang(&self) -> Self::Output

source§

impl ToBoxLang for Kern

source§

type Output = Kern<'static>

source§

fn to_box_lang(&self) -> Self::Output

source§

impl<T: ToBoxLang> ToBoxLang for Vec<T>

source§

type Output = Vec<<T as ToBoxLang>::Output>

source§

fn to_box_lang(&self) -> Self::Output

Implementors§