Searched refs:hash (Results 1 – 7 of 7) sorted by relevance
| /tonic/tonic/src/metadata/ |
| H A D | value.rs | 9 use std::hash::{Hash, Hasher}; 614 self.inner.hash(state) in hash() 899 fn hash(value: Amv) -> u64 { in test_ascii_value_hash() function 901 value.hash(&mut hasher); in test_ascii_value_hash() 908 assert_eq!(hash(value1), hash(value2)); in test_ascii_value_hash() 914 assert_ne!(hash(value1), hash(value2)); in test_ascii_value_hash() 922 fn hash(value: Bmv) -> u64 { in test_valid_binary_value_hash() function 931 assert_eq!(hash(value1), hash(value2)); in test_valid_binary_value_hash() 936 assert_ne!(hash(value1), hash(value2)); in test_valid_binary_value_hash() 954 assert_eq!(hash(value1), hash(value2)); in test_invalid_binary_value_hash() [all …]
|
| H A D | encoding.rs | 6 use std::hash::Hash;
|
| /tonic/tonic/src/transport/channel/service/ |
| H A D | discover.rs | 4 hash::Hash,
|
| /tonic/ |
| H A D | deny.toml | 57 { path = "LICENSE", hash = 0xbd0eed23 },
|
| H A D | CHANGELOG.md | 295 * Implement hash for `Code` ([#917](https://github.com/hyperium/tonic/issues/917)) ([6bc7dab](https…
|
| /tonic/tonic/src/transport/channel/ |
| H A D | mod.rs | 23 hash::Hash,
|
| /tonic/examples/ |
| H A D | routeguide-tutorial.md | 341 use std::hash::{Hasher, Hash}; 346 fn hash<H>(&self, state: &mut H) 350 self.latitude.hash(state); 351 self.longitude.hash(state);
|