(id: impl Into<i32>, email: impl Into<String>)
| 54 | |
| 55 | impl User { |
| 56 | fn builder(id: impl Into<i32>, email: impl Into<String>) -> UserBuilder { |
| 57 | UserBuilder::new(id, email) |
| 58 | } |
| 59 | |
| 60 | fn complete(&self) -> bool { |
| 61 | self.last_name.is_some() |
nothing calls this directly
no outgoing calls
no test coverage detected