Tuple4Call

Trait Tuple4Call 

Source
pub trait Tuple4Call<T0, T1, T2, T3> {
    // Required method
    fn call<F, O>(self, f: F) -> O
       where F: FnOnce(T0, T1, T2, T3) -> O;
}

Required Methods§

Source

fn call<F, O>(self, f: F) -> O
where F: FnOnce(T0, T1, T2, T3) -> O,

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.

Implementations on Foreign Types§

Source§

impl<T0, T1, T2, T3> Tuple4Call<T0, T1, T2, T3> for (T0, T1, T2, T3)

Source§

fn call<F, O>(self, f: F) -> O
where F: FnOnce(T0, T1, T2, T3) -> O,

Implementors§