pub trait CollectExt: Collect + Sealed {
// Provided method
fn with<S>(self, subscriber: S) -> Layered<S, Self> ⓘ
where S: Subscribe<Self>,
Self: Sized { ... }
}
Expand description
Extension trait adding a with(Subscribe)
combinator to types implementing
Collect
.