pub trait CombineFail<'a, Rhs, Out> {
// Required method
fn combine_fail(
self,
self_state: State<'a>,
other: Rhs,
other_state: State<'a>,
) -> Out;
}Required Methods§
fn combine_fail( self, self_state: State<'a>, other: Rhs, other_state: State<'a>, ) -> Out
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".