pub trait TryAndChain<S, E> {
type Combinator: Handler<S, E>;
// Required method
fn chain(self) -> Self::Combinator;
}
Expand description
Types that describe a sequence of event handlers that can be combined via try_and
.
pub trait TryAndChain<S, E> {
type Combinator: Handler<S, E>;
// Required method
fn chain(self) -> Self::Combinator;
}
Types that describe a sequence of event handlers that can be combined via try_and
.