ToBoxLang

Trait 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 Vec<DiscretionaryElem>

Source§

impl ToBoxLang for Vec<Horizontal>

Source§

type Output = Vec<Horizontal<'static>>

Source§

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

Source§

impl ToBoxLang for Vec<Vertical>

Source§

type Output = Vec<Vertical<'static>>

Source§

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

Source§

impl ToBoxLang for Adjust

Source§

type Output = Adjust<'static>

Source§

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

Source§

impl ToBoxLang for Char

Source§

type Output = Chars<'static>

Source§

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

Source§

impl ToBoxLang for Discretionary

Source§

type Output = Discretionary<'static>

Source§

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

Source§

impl ToBoxLang for DiscretionaryElem

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 Insertion

Source§

type Output = Insertion<'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 ToBoxLang for Ligature

Source§

type Output = Ligature<'static>

Source§

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

Source§

impl ToBoxLang for Mark

Source§

type Output = Mark<'static>

Source§

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

Source§

impl ToBoxLang for Math

Source§

type Output = Math<'static>

Source§

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

Source§

impl ToBoxLang for Penalty

Source§

type Output = Penalty<'static>

Source§

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

Source§

impl ToBoxLang for Rule

Source§

type Output = Rule<'static>

Source§

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

Source§

impl ToBoxLang for VList

Source§

type Output = Vlist<'static>

Source§

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

Source§

impl ToBoxLang for Vertical

Source§

type Output = Vertical<'static>

Source§

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

Implementors§