Skip to main content

Six

Trait Six 

Source
pub trait Six<T1, T2, T3, T4, T5, T6>:
    'static
    + Five<T1, T2, T3, T4, T5>
    + Contains<T6> { }
Expand description

A set containing 6 types.

This should not be implemented manually.

For easy usage, see the macro Set.

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§

Source§

impl<T1, T2, T3, T4, T5, T6, S> Six<T1, T2, T3, T4, T5, T6> for S
where S: Five<T1, T2, T3, T4, T5> + Contains<T6> + ?Sized + 'static,