For the implementation of the trait Hash on primitive types: https://doc.rust-lang.org/src/core/hash/mod.rs.html#556
Hash
Shouldn’t that be annotated #[inline]? Or is there some reason that is not needed?
#[inline]
Functions with generic type parameters can always be inlined cross-crate, even without the #[inline] attribute.
Ah. Thank you.