Trait specs::Component [] [src]

pub trait Component: Any + Sized {
    type Storage: Storage<Self> + Any + Send + Sync;
}

Abstract component type. Doesn't have to be Copy or even Clone.

Associated Types

type Storage: Storage<Self> + Any + Send + Sync

Associated storage type for this component.

Implementors