(&self)
| 211 | /// Build the OCSF `Container` object. |
| 212 | #[must_use] |
| 213 | pub fn container(&self) -> Container { |
| 214 | Container { |
| 215 | name: self.sandbox_name.clone(), |
| 216 | uid: Some(self.sandbox_id.clone()), |
| 217 | image: Some(Image { |
| 218 | name: self.container_image.clone(), |
| 219 | }), |
| 220 | } |
| 221 | } |
| 222 | |
| 223 | /// Build the OCSF `Device` object. |
| 224 | #[must_use] |
no outgoing calls