Trait below_dump::tmain::Dumper

source ·
pub trait Dumper {
    // Required method
    fn dump_model(
        &self,
        ctx: &CommonFieldContext,
        model: &Model,
        output: &mut dyn Write,
        round: &mut usize,
        comma_flag: bool
    ) -> Result<IterExecResult>;
}
Expand description

Dumps (a portion of) the Model to some output in specific format.

Required Methods§

source

fn dump_model( &self, ctx: &CommonFieldContext, model: &Model, output: &mut dyn Write, round: &mut usize, comma_flag: bool ) -> Result<IterExecResult>

Implementors§