(mut self, desc: &str)
| 33 | /// Set the description. |
| 34 | #[must_use] |
| 35 | pub fn with_desc(mut self, desc: &str) -> Self { |
| 36 | self.desc = Some(desc.to_string()); |
| 37 | self |
| 38 | } |
| 39 | } |
| 40 | |
| 41 | /// OCSF Evidence object — artifacts associated with a finding. |
no outgoing calls