Trait GroupSource

Source
pub trait GroupSource {
    // Required method
    fn to_group() -> GroupDef;
}
Expand description

A type which defines a component group.

Required Methods§

Source

fn to_group() -> GroupDef

Creates a group definition.

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<A, B, C, D, E, F, G, H, I> GroupSource for (A, B, C, D, E, F, G, H, I)

Source§

impl<B, C, D, E, F, G, H, I> GroupSource for (B, C, D, E, F, G, H, I)

Source§

impl<C, D, E, F, G, H, I> GroupSource for (C, D, E, F, G, H, I)

Source§

impl<D, E, F, G, H, I> GroupSource for (D, E, F, G, H, I)

Source§

impl<E, F, G, H, I> GroupSource for (E, F, G, H, I)
where E: Component, F: Component, G: Component, H: Component, I: Component,

Source§

impl<F, G, H, I> GroupSource for (F, G, H, I)
where F: Component, G: Component, H: Component, I: Component,

Source§

impl<G, H, I> GroupSource for (G, H, I)
where G: Component, H: Component, I: Component,

Source§

impl<H, I> GroupSource for (H, I)
where H: Component, I: Component,

Source§

impl<I> GroupSource for (I,)
where I: Component,

Implementors§