Skip to main content

Dumper

Trait 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>

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§