Trait Then
pub trait Then<U, F>: Sizedwhere
F: Fn(Self) -> U,{
// Required method
fn then(self, fx: F) -> U;
}
Required Methods§
fn then(self, fx: F) -> U
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.