pub trait Chain<U> {
type Output;
// Required method
fn chain(self, other: U) -> Self::Output;
}Expand description
Combine two values
This trait is used to represent types that can be chained, including middleware and resource values.
Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".