pub trait RunnableWithFallbacksExt: Runnable {
// Provided method
fn with_fallbacks(
self,
fallbacks: Vec<DynRunnable<Self::Input, Self::Output>>,
) -> RunnableWithFallbacks<Self::Input, Self::Output>
where Self: Sized + Send + Sync + 'static { ... }
}Expand description
Extension trait to add with_fallbacks method to any Runnable.