AnyVecWithWriter

Trait AnyVecWithWriter 

Source
pub trait AnyVecWithWriter: AnyCollectableVec {
    // Required method
    fn create_writer(
        &self,
        from: Option<i64>,
        to: Option<i64>,
    ) -> Box<dyn ValueWriter + '_>;
}

Required Methods§

Source

fn create_writer( &self, from: Option<i64>, to: Option<i64>, ) -> Box<dyn ValueWriter + '_>

Create a value writer that can be advanced row by row

Implementors§

Source§

impl<V> AnyVecWithWriter for V
where V: TypedVec + CollectableVec<V::I, V::T>, V::T: Formattable,