pub fn demux_map_lazy<Key, Si, Item, Func>(
func: Func,
) -> LazyDemuxSink<Key, Si, Func>Available on crate feature
std only.Expand description
Creates a LazyDemuxSink that lazily creates sinks on first use for each key.
This requires sinks Si to be Unpin. If your sinks are not Unpin, first wrap them in Box::pin to make them Unpin.