Trait orzir_core::Print

source ·
pub trait Print {
    // Required method
    fn print(&self, ctx: &Context, state: &mut PrintState) -> PrintResult<()>;
}

Required Methods§

source

fn print(&self, ctx: &Context, state: &mut PrintState) -> PrintResult<()>

Implementations on Foreign Types§

source§

impl Print for f32

source§

fn print(&self, _: &Context, state: &mut PrintState) -> PrintResult<()>

source§

impl Print for usize

source§

fn print(&self, _: &Context, state: &mut PrintState) -> PrintResult<()>

source§

impl<T: Print> Print for Option<T>

source§

fn print(&self, ctx: &Context, state: &mut PrintState) -> PrintResult<()>

Implementors§