Skip to main content

TransformExt

Trait TransformExt 

Source
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

Provided Methods§

Source

fn then<U: Transform<Self::Output>>(self, other: U) -> Chain<Self, U>
where Self: Sized,

Chain this transform with another

Implementors§

Source§

impl<T, U: Transform<T>> TransformExt<T> for U