Trait PlatformSendStream

Source
pub trait PlatformSendStream: Stream + PlatformSend { }
Expand description

A stream that requires Send on native platforms, but not on WASM.

Implementors§

Source§

impl<S, T> PlatformSendStream for S
where S: Stream<Item = T> + PlatformSend,