()
| 36 | |
| 37 | impl Default for Frog { |
| 38 | fn default() -> Self { |
| 39 | // 6. Use trace!() to log that a default value was generated, with the debug representation |
| 40 | Frog { |
| 41 | energy: 5, |
| 42 | sleeping: false, |
| 43 | } |
| 44 | } |
| 45 | } |
nothing calls this directly
no outgoing calls
no test coverage detected