Trait StringMaker

Source
pub trait StringMaker<T> {
    // Required method
    fn make_string(
        &self,
        val: &T,
        wf: &WorkflowStrings,
        buf: &mut String,
    ) -> Result<()>;
}

Required Methods§

Source

fn make_string( &self, val: &T, wf: &WorkflowStrings, buf: &mut String, ) -> Result<()>

Implementors§