(&self)
| 58 | } |
| 59 | |
| 60 | fn complete(&self) -> bool { |
| 61 | self.last_name.is_some() |
| 62 | && self.id > 0 |
| 63 | && !self.email.is_empty() |
| 64 | && self.first_name.is_some() |
| 65 | } |
| 66 | } |
| 67 | |
| 68 | #[derive(Default, Builder, Debug)] |
nothing calls this directly
no outgoing calls
no test coverage detected