I noticed this library exposes the futures_sink::Sink trait instead of the futures::sink::Sink trait. Unlike the latter, the former seems to not support futures::sink::SinkExt, which provides actual async methods for dumping things in, and there doesn't seem to be an equivalent convenience trait.
Is there currently a supported way to write to these in async contexts, by awaiting on some future, without directly interacting with the poll_ interface (and therefore having to manually manage polling/wakeups)?
I noticed this library exposes the
futures_sink::Sink
trait instead of thefutures::sink::Sink
trait. Unlike the latter, the former seems to not supportfutures::sink::SinkExt
, which provides actual async methods for dumping things in, and there doesn't seem to be an equivalent convenience trait.Is there currently a supported way to write to these in async contexts, by awaiting on some future, without directly interacting with the
poll_
interface (and therefore having to manually manage polling/wakeups)?