pub trait AutoCompose<A>where
Self: Sized,{
type Output;
// Required method
fn compose(self, _other: A) -> Self::Output;
// Provided methods
fn o(self, other: A) -> Self::Output { ... }
fn of(self, other: A) -> Self::Output { ... }
fn after(self, other: A) -> Self::Output { ... }
fn on(self, other: A) -> Self::Output { ... }
}Required Associated Types§
Required Methods§
Provided Methods§
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<StaticArgs, Outer, Inner> AutoCompose<AutoDiff<StaticArgs, Inner>> for AutoDiff<StaticArgs, Outer>
Impl of Compose for AutoDiff
impl<StaticArgs, Outer, Inner> AutoCompose<AutoDiff<StaticArgs, Inner>> for AutoDiff<StaticArgs, Outer>
Impl of Compose for AutoDiff