Skip to content

Commit

Permalink
Merge pull request #339 from Jongy/fdtarget-eq
Browse files Browse the repository at this point in the history
Derive PartialEq & Eq for FDTarget
  • Loading branch information
eminence authored Mar 9, 2025
2 parents 85cf03b + 50bac58 commit 4ccc45b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion procfs-core/src/process/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -699,7 +699,7 @@ impl crate::FromBufRead for Io {
}

/// Describes a file descriptor opened by a process.
#[derive(Clone, Debug)]
#[derive(Clone, Debug, PartialEq, Eq)]
#[cfg_attr(feature = "serde1", derive(Serialize, Deserialize))]
pub enum FDTarget {
/// A file or device
Expand Down

0 comments on commit 4ccc45b

Please sign in to comment.