Skip to content

Commit 755c9ee

Browse files
committed
feat(api): remove eq traits from LinkPathList
The order of items is non-deterministic
1 parent 581f154 commit 755c9ee

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/hardlink/link_path_list.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ use std::path::PathBuf;
1313
/// **Serialization and deserialization:** _(feature: `json`)_ `LinkPathList` does not implement
1414
/// `Serialize` and `Deserialize` traits directly, instead, it can be converted into/from a
1515
/// [`Reflection`] which implements these traits.
16-
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
16+
#[derive(Debug, Clone)]
1717
pub struct LinkPathList(Vec<PathBuf>);
1818

1919
impl LinkPathList {

0 commit comments

Comments
 (0)