Trait boxworks_lang::convert::ToBoxworks

source ·
pub trait ToBoxworks {
    type Output;

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

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

Required Associated Types§

Required Methods§

source

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

Implementations on Foreign Types§

source§

impl<'a> ToBoxworks for Vec<Horizontal<'a>>

source§

type Output = Vec<Horizontal>

source§

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

Implementors§

source§

impl<'a> ToBoxworks for Horizontal<'a>

source§

type Output = Vec<Horizontal>

source§

impl<'a> ToBoxworks for Glue<'a>

source§

type Output = Glue

source§

impl<'a> ToBoxworks for Hlist<'a>

source§

type Output = HList

source§

impl<'a> ToBoxworks for Kern<'a>

source§

type Output = Kern

source§

impl<'a> ToBoxworks for Text<'a>

source§

type Output = Vec<Horizontal>