fast_select

Trait Select

Source
pub trait Select: Sealed { }
Expand description

A sealed trait for tuple types that can be selected over with FastSelect.

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<R, T0: Future<Output = R>> Select for (T0,)

Source§

impl<R, T0: Future<Output = R>, T1: Future<Output = R>> Select for (T0, T1)

Source§

impl<R, T0: Future<Output = R>, T1: Future<Output = R>, T2: Future<Output = R>> Select for (T0, T1, T2)

Source§

impl<R, T0: Future<Output = R>, T1: Future<Output = R>, T2: Future<Output = R>, T3: Future<Output = R>> Select for (T0, T1, T2, T3)

Source§

impl<R, T0: Future<Output = R>, T1: Future<Output = R>, T2: Future<Output = R>, T3: Future<Output = R>, T4: Future<Output = R>> Select for (T0, T1, T2, T3, T4)

Source§

impl<R, T0: Future<Output = R>, T1: Future<Output = R>, T2: Future<Output = R>, T3: Future<Output = R>, T4: Future<Output = R>, T5: Future<Output = R>> Select for (T0, T1, T2, T3, T4, T5)

Implementors§