blob: 417305139e472ee58a4e30c9c1d29a6a2e8b6a53 (
plain)
1
2
3
4
5
6
7
|
//! This module contains `HashStable` implementations for various data types
//! that don't fit into any of the other impls_xxx modules.
impl_stable_hash_for!(enum ::rustc_target::spec::PanicStrategy {
Abort,
Unwind
});
|