#type-hash #macro #enums #properly #macro-derive #traits-for-types

macro type_hash_macros

Internal macro definitions. They may not work properly if not used via the type_hash crate.

5 unstable releases

0.3.0 Feb 27, 2021
0.2.2 Jan 4, 2021
0.2.1 Jan 3, 2021
0.2.0 Jan 3, 2021
0.1.0 Jan 3, 2021

#16 in #traits-for-types

Download history 18474/week @ 2025-10-10 16602/week @ 2025-10-17 15246/week @ 2025-10-24 15841/week @ 2025-10-31 11752/week @ 2025-11-07 13209/week @ 2025-11-14 8094/week @ 2025-11-21 12524/week @ 2025-11-28 8338/week @ 2025-12-05 8807/week @ 2025-12-12 5734/week @ 2025-12-19 2574/week @ 2025-12-26 12680/week @ 2026-01-02 13661/week @ 2026-01-09 17905/week @ 2026-01-16 19112/week @ 2026-01-23

63,616 downloads per month
Used in 3 crates (via type_hash)

MIT license

10KB
177 lines

type_hash

Generate a hash for a Rust type.

The primary use-case for this crate is for detecting differences in message types between versions of a crate.

The TypeHash trait is implemented for most built-in types and a derive macro is provided, for implementing it for your own types.

Examples

use type_hash::TypeHash;

#[derive(TypeHash)]
pub enum Message {
    LaunchMissiles { destination: String },
    CancelMissiles,
}

fn main() {
    let hash = Message::type_hash();
    // this will only change if the type definition changes
    assert_eq!(hash, 11652809455620829461);
}

Customising derived TypeHash implementations

#[type_hash(foreign_type)]

If a struct field has a foreign type that does not implement TypeHash, you can mark it as a foreign type and the derive TypeHash implementation will use the name of the type in the hash instead. You need to be a little bit careful here because a change in the third party crate could change your type in an undetectable way.

#[derive(TypeHash)]
pub struct MyStruct {
    #[type_hash(foreign_type)]
    data: ArrayVec<[u16; 7]>
}

#[type_hash(skip)]

Skip a field, so it is not part of the hash.

#[derive(TypeHash)]
pub struct MyStruct {
    #[type_hash(skip)]
    not_important: Vec<i64>,
}

#[type_hash(as = "...")]

Hash a field as if it had a different type. This allows you to change the type of a field to a different type that is still compatible for your application, without affecting the hash.

#[derive(TypeHash)]
pub struct MyStruct {
    #[type_hash(as = "HashSet<i64>")]
    numbers: BTreeSet<i64>,
}

Dependencies

~1.5MB
~40K SLoC