pub type BoxedMessageStream = BoxStream<'static, MessageStreamItem>;
Aliased Type§
struct BoxedMessageStream {}
Trait Implementations§
source§impl StreamExecutorTestExt for BoxedMessageStream
impl StreamExecutorTestExt for BoxedMessageStream
source§fn next_unwrap_pending(&mut self)
fn next_unwrap_pending(&mut self)
Asserts that the executor is pending (not ready) now. Read more
source§fn next_unwrap_ready(&mut self) -> StreamExecutorResult<Message>
fn next_unwrap_ready(&mut self) -> StreamExecutorResult<Message>
Asserts that the executor is ready now, returning the next message. Read more
source§fn next_unwrap_ready_chunk(&mut self) -> StreamExecutorResult<StreamChunk>
fn next_unwrap_ready_chunk(&mut self) -> StreamExecutorResult<StreamChunk>
Asserts that the executor is ready on a
StreamChunk
now, returning the next chunk. Read more