pub trait TransformExt<T>: Transform<T> {
// Provided method
fn then<U: Transform<Self::Output>>(self, other: U) -> Chain<Self, U>
where Self: Sized { ... }
}Expand description
Extension trait providing composition and chaining operations