(mut self, first_name: impl Into<String>)
| 26 | } |
| 27 | |
| 28 | fn first_name(mut self, first_name: impl Into<String>) -> Self { |
| 29 | self.first_name = Some(first_name.into()); |
| 30 | self |
| 31 | } |
| 32 | |
| 33 | #[allow(dead_code)] |
| 34 | fn last_name(mut self, last_name: impl Into<String>) -> Self { |