Skip to main content

TransformExt

Trait TransformExt 

Source
pub trait TransformExt: Sized {
    // Provided method
    fn compose<T2>(self, t2: T2) -> Compose<Self, T2> { ... }
}
Expand description

A helper trait to compose transforms.

Provided Methods§

Source

fn compose<T2>(self, t2: T2) -> Compose<Self, T2>

Compose a transform with another.

The convention used is such that t1.compose(t2) will yield the mapping t2.to_external(t1.to_external(z)).

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<T> TransformExt for T