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