Check if this identity is valid (not expired, etc.).
(&self)
| 343 | |
| 344 | /// Check if this identity is valid (not expired, etc.). |
| 345 | pub fn is_valid(&self) -> bool { |
| 346 | !self.is_expired() |
| 347 | } |
| 348 | |
| 349 | /// Get a short display string. |
| 350 | pub fn display_short(&self) -> String { |
nothing calls this directly
no test coverage detected