size_of/support/xxhash_rust.rs
1#![cfg(feature = "xxhash-rust")]
2
3impl_total_size_childless! {
4 #[cfg(feature = "xxhash-xxh32")]
5 xxhash_rust::xxh32::Xxh32,
6
7 #[cfg(feature = "xxhash-xxh64")]
8 xxhash_rust::xxh64::Xxh64,
9 #[cfg(feature = "xxhash-xxh64")]
10 xxhash_rust::xxh64::Xxh64Builder,
11
12 #[cfg(feature = "xxhash-xxh3")]
13 xxhash_rust::xxh3::Xxh3,
14 #[cfg(feature = "xxhash-xxh3")]
15 xxhash_rust::xxh3::Xxh3Builder,
16}