(id: &str)
| 73 | } |
| 74 | |
| 75 | fn hash_id(id: &str) -> u64 { |
| 76 | use std::hash::{Hash, Hasher}; |
| 77 | let mut hasher = rustc_hash::FxHasher::default(); |
| 78 | id.hash(&mut hasher); |
| 79 | hasher.finish() |
| 80 | } |
| 81 | |
| 82 | fn fire_http( |
| 83 | method: &str, |
no outgoing calls
no test coverage detected