Get a short form of the ID for display (first 8 characters).
(&self)
| 87 | |
| 88 | /// Get a short form of the ID for display (first 8 characters). |
| 89 | pub fn short(&self) -> String { |
| 90 | self.to_base32()[..8].to_string() |
| 91 | } |
| 92 | } |
| 93 | |
| 94 | impl fmt::Debug for IdentityId { |