#[derive(Lifecycle)]
A convenient auto derive for Lifecycle trait. It could be simply written as impl Lifecycle for MyComponent {} instead, but why not save some chars. You may use it like:
Lifecycle
impl Lifecycle for MyComponent {}
#[derive(Lifecycle)] struct Button;