Skip to main content

RowStream

Trait RowStream 

Source
pub trait RowStream<'a>: Stream<Item = StreamExecutorResult<OwnedRow>> + 'a { }

Dyn Compatibility§

This trait is dyn compatible.

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

Implementors§

Source§

impl<'a, S: Stream<Item = StreamExecutorResult<OwnedRow>> + 'a> RowStream<'a> for S