pub trait Tuple3Call<T0, T1, T2> {
// Required method
fn call<F, O>(self, f: F) -> O
where F: FnOnce(T0, T1, T2) -> O;
}Required 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.