diff options
| author | metamuffin <metamuffin@disroot.org> | 2026-02-04 16:23:29 +0100 |
|---|---|---|
| committer | metamuffin <metamuffin@disroot.org> | 2026-02-04 16:23:29 +0100 |
| commit | 1af0468788c0a592a76398206e6c7479384853ec (patch) | |
| tree | 1860ec77be705a0715cc4c90c51176b22fabfca8 /common/object/src | |
| parent | 088b6b323130b0a9509c76f395c7ed4bf5609234 (diff) | |
| download | jellything-1af0468788c0a592a76398206e6c7479384853ec.tar jellything-1af0468788c0a592a76398206e6c7479384853ec.tar.bz2 jellything-1af0468788c0a592a76398206e6c7479384853ec.tar.zst | |
stuff
Diffstat (limited to 'common/object/src')
| -rw-r--r-- | common/object/src/path.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/object/src/path.rs b/common/object/src/path.rs index 7db8798..fc14e6d 100644 --- a/common/object/src/path.rs +++ b/common/object/src/path.rs @@ -7,7 +7,7 @@ use crate::{Object, Tag, TypedTag}; use std::marker::PhantomData; -#[derive(Debug, Clone, PartialEq, Eq, PartialOrd, Ord)] +#[derive(Debug, Clone, PartialEq, Eq, PartialOrd, Ord, Hash)] pub struct Path(pub Vec<Tag>); impl Path { |