error[E0277]: the trait bound `PropsWithoutDefault: Default` is not satisfied --> tests/custom_components/custom_component_without_props_without_default_fail.rs:10:13 | 10 | rsx! { }; | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `Default` is not implemented for `PropsWithoutDefault` | help: consider annotating `PropsWithoutDefault` with `#[derive(Default)]` --> tests/custom_components/../utils/custom_components/custom_component_props_struct_without_default.rs | + #[derive(Default)] | }; | error[E0277]: the trait bound `PropsWithoutDefault: Default` is not satisfied --> tests/custom_components/custom_component_without_props_without_default_fail.rs:11:13 | 11 | rsx! { }; | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait `Default` is not implemented for `PropsWithoutDefault` | help: consider annotating `PropsWithoutDefault` with `#[derive(Default)]` --> tests/custom_components/../utils/custom_components/custom_component_props_struct_without_default.rs | + #[derive(Default)] | }; |