pub trait AckHandler: Stream<Item = Result<Self::Output, Self::Error>> + Unpin {
type Output;
type Error: Error + Send + Sync + 'static;
}Expand description
Produces a stream of acknowledgments from an associated Publisher or Subscriber.