component

Attribute Macro component 

Source
#[component]
Expand description

Marks a struct as a component

Automatically derives Debug, Clone, and PartialEq.

§Example

#[component]
struct Position {
    x: f32,
    y: f32,
}