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

Implementors§