Make a hex string from the fingerprint. Use [std::fmt::Display] or [ToString::to_string] to get a human-readable formatted string.
(&self)
| 583 | /// Use [std::fmt::Display] or [ToString::to_string] to get a |
| 584 | /// human-readable formatted string. |
| 585 | pub fn hex(&self) -> String { |
| 586 | hex::encode_upper(&self.0) |
| 587 | } |
| 588 | |
| 589 | /// Make a human-readable fingerprint. |
| 590 | pub fn human_readable(&self) -> String { |
no outgoing calls
no test coverage detected