pub trait AnyVecWithWriter: AnyCollectableVec {
// Required method
fn create_writer(
&self,
from: Option<i64>,
to: Option<i64>,
) -> Box<dyn ValueWriter + '_>;
}Required Methods§
Sourcefn create_writer(
&self,
from: Option<i64>,
to: Option<i64>,
) -> Box<dyn ValueWriter + '_>
fn create_writer( &self, from: Option<i64>, to: Option<i64>, ) -> Box<dyn ValueWriter + '_>
Create a value writer that can be advanced row by row