pub trait TupleStream {
// Required method
fn advance(&mut self) -> Option<Tuple>;
}Expand description
A lazy tuple stream — advance returns the next tuple or
None when the stream is exhausted.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".