pub(super) trait ChanReceiver: Send {
// Required method
async fn recv(&mut self) -> SharedResult<Option<DataChunkInChannel>>;
}
Required Methods§
Sourceasync fn recv(&mut self) -> SharedResult<Option<DataChunkInChannel>>
async fn recv(&mut self) -> SharedResult<Option<DataChunkInChannel>>
Returns None
if there’s no more data to read.
Otherwise it will wait until there’s data.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.