()
| 1446 | |
| 1447 | #[allow(dead_code)] |
| 1448 | pub fn function() {} // Use the `pub` modifier to override default visibility. |
| 1449 | |
| 1450 | #[allow(dead_code)] |
| 1451 | pub(crate) fn pub_in_crate() {} // pub(crate) makes functions visible only within the current crate |
nothing calls this directly
no outgoing calls
no test coverage detected