Trait rerun::Component

source ·
pub trait Component: Loggable<Name = ComponentName> { }
Expand description

A Component describes semantic data that can be used by any number of Archetypes.

Any Loggable with a Loggable::Name set to ComponentName automatically implements Component.

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<L> Component for L
where L: Loggable<Name = ComponentName>,