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.
Required Associated Types§
type Combinator: Handler<S, E>
Required Methods§
fn chain(self) -> Self::Combinator
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".