Trait legion::storage::IntoComponentSource[][src]

pub trait IntoComponentSource {
    type Source: ComponentSource;
    fn into(self) -> Self::Source;
}
Expand description

Converts a type into a ComponentSource.

Associated Types

The output component source.

Required methods

Converts this structure into a component source.

Implementors