Get all signer names.
(&self)
| 354 | |
| 355 | /// Get all signer names. |
| 356 | pub fn signer_names(&self) -> Vec<&str> { |
| 357 | self.signatures |
| 358 | .iter() |
| 359 | .map(|s| s.signer_name.as_str()) |
| 360 | .collect() |
| 361 | } |
| 362 | } |
| 363 | |
| 364 | /// Verification result with details. |