Trait type_sets::sets::Five

source ·
pub trait Five<T1, T2, T3, T4, T5>: Four<T1, T2, T3, T4> + Contains<T5> { }
Expand description

A set containing 5 types.

This should not be implemented manually.

For easy usage, see the macro Set.

Implementors§

source§

impl<T1, T2, T3, T4, T5, S> Five<T1, T2, T3, T4, T5> for S
where S: Four<T1, T2, T3, T4> + Contains<T5> + ?Sized,