16 lines
380 B
Rust
16 lines
380 B
Rust
//! 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 crate::session::search_paths::PathKind {
|
|
Native,
|
|
Crate,
|
|
Dependency,
|
|
Framework,
|
|
ExternFlag,
|
|
All
|
|
});
|
|
|
|
impl_stable_hash_for!(enum ::rustc_target::spec::PanicStrategy {
|
|
Abort,
|
|
Unwind
|
|
});
|