(&self)
| 66 | |
| 67 | impl Clone for SuiteConfig { |
| 68 | fn clone(&self) -> Self { |
| 69 | Self { |
| 70 | name: self.name.clone(), |
| 71 | description: self.description.clone(), |
| 72 | options: self.options.clone(), |
| 73 | suite_path: self.suite_path.clone(), |
| 74 | suite_dir: self.suite_dir.clone(), |
| 75 | query_cache: OnceCell::new(), |
| 76 | } |
| 77 | } |
| 78 | } |
| 79 | |
| 80 | #[derive(Debug, Clone, Deserialize, Serialize)] |
no test coverage detected