[]Trait bevy::ecs::Component

pub trait Component: 'static + Send + Sync { }

Types that can be components, implemented automatically for all Send + Sync + 'static types

This is just a convenient shorthand for Send + Sync + 'static, and never needs to be implemented manually.

Implementors

impl<T> Component for T where
    T: 'static + Send + Sync

Loading content...