Skip to main content

Tuple5Call

Trait Tuple5Call 

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

Required Methods§

Source

fn call<F, O>(self, f: F) -> O
where F: FnOnce(T0, T1, T2, T3, T4) -> 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, T4> Tuple5Call<T0, T1, T2, T3, T4> for (T0, T1, T2, T3, T4)

Source§

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

Implementors§