Make ProcessConfiguration.User Equatable (#1357)

Make `User` comparable.

## Type of Change
- [ ] Bug fix
- [ ] New feature  
- [ ] Breaking change
- [ ] Documentation update

## Motivation and Context
[Why is this change needed?]

## Testing
- [ ] Tested locally
- [ ] Added/updated tests
- [ ] Added/updated docs
This commit is contained in:
jwhur
2026-03-27 15:13:30 -07:00
committed by GitHub
parent d3a52c53fa
commit 1cdd02d8e6
@@ -53,7 +53,7 @@ public struct ProcessConfiguration: Sendable, Codable {
}
/// The User information for a Process.
public enum User: Sendable, Codable, CustomStringConvertible {
public enum User: Sendable, Codable, CustomStringConvertible, Equatable {
/// Given the raw user string of the form <uid:gid> or <user:group> or <user> lookup the uid/gid within
/// the container before setting it for the Process.
case raw(userString: String)