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.
pub trait Chain<U> {
type Output;
// Required method
fn chain(self, other: U) -> Self::Output;
}Combine two values
This trait is used to represent types that can be chained, including middleware and resource values.