• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1error[E0277]: the trait bound `NoDefault: std::default::Default` is not satisfied
2 --> tests/compile-fail/skip_field_not_impl_default.rs:8:15
3  |
48 |     #[darling(skip)]
5  |               ^^^^ the trait `std::default::Default` is not implemented for `NoDefault`
6  |
7help: consider annotating `NoDefault` with `#[derive(Default)]`
8  |
94 | #[derive(Default)]
10  |
11
12error[E0277]: the trait bound `NoDefault: std::default::Default` is not satisfied
13  --> tests/compile-fail/skip_field_not_impl_default.rs:11:22
14   |
1511 |     #[darling(skip = true)]
16   |                      ^^^^ the trait `std::default::Default` is not implemented for `NoDefault`
17   |
18help: consider annotating `NoDefault` with `#[derive(Default)]`
19   |
204  | #[derive(Default)]
21   |
22