pub trait MutStreamingIterator {
type Item;
type Error;
fn advance(self) -> Result<State<Self>, Self::Error>;
fn get(&mut self) -> Option<&mut Self::Item>;
}
This is supported on crate feature
io_parquet
only.pub trait MutStreamingIterator {
type Item;
type Error;
fn advance(self) -> Result<State<Self>, Self::Error>;
fn get(&mut self) -> Option<&mut Self::Item>;
}
io_parquet
only.