(mut self, last_name: impl Into<String>)
| 32 | |
| 33 | #[allow(dead_code)] |
| 34 | fn last_name(mut self, last_name: impl Into<String>) -> Self { |
| 35 | self.last_name = Some(last_name.into()); |
| 36 | self |
| 37 | } |
| 38 | |
| 39 | fn build(self) -> User { |
| 40 | let Self { |
nothing calls this directly
no outgoing calls
no test coverage detected