MCPcopy Create free account
hub / github.com/TheRedDeveloper/ply-engine / hash_id

Function hash_id

src/net/mod.rs:75–80  ·  view source on GitHub ↗
(id: &str)

Source from the content-addressed store, hash-verified

73}
74
75fn 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
82fn fire_http(
83 method: &str,

Callers 4

fire_httpFunction · 0.85
requestFunction · 0.85
ws_connectFunction · 0.85
wsFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected