(&self, other: &Self)
| 102 | |
| 103 | impl Ord for SshKeyPair { |
| 104 | fn cmp(&self, other: &Self) -> Ordering { |
| 105 | self.key_pair |
| 106 | .fingerprint(HashAlg::default()) |
| 107 | .cmp(&other.key_pair.fingerprint(HashAlg::default())) |
| 108 | } |
| 109 | } |
| 110 | |
| 111 | impl Serialize for SshKeyPair { |
no test coverage detected