(&self)
| 71 | } |
| 72 | |
| 73 | pub fn encoding(&self) -> Option<String> { |
| 74 | match self { |
| 75 | ProfileArchiveContent::CompressedInMemory { .. } => Some("gzip".to_string()), |
| 76 | ProfileArchiveContent::CompressedOnDisk { .. } => Some("gzip".to_string()), |
| 77 | _ => None, |
| 78 | } |
| 79 | } |
| 80 | } |
| 81 | |
| 82 | impl Drop for ProfileArchiveContent { |
no outgoing calls
no test coverage detected