Trait AndThenExt

Source
pub trait AndThenExt<Other>: Lenticuloid<InitialTarget = Other::InitialSource, FinalTarget = Other::FinalSource> + Sized
where Other: Lenticuloid,
{ // Required method fn and_then(self, other: Other) -> Compose<Other, Self>; }
Expand description

Extension trait for lenticuloid composition in intuitive order.

Required Methods§

Source

fn and_then(self, other: Other) -> Compose<Other, Self>

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<This, Other> AndThenExt<Other> for This
where Other: Lenticuloid, This: Lenticuloid<InitialTarget = Other::InitialSource, FinalTarget = Other::FinalSource>,