(&self, source: P, patterns: &[S])
| 188 | |
| 189 | impl PathCopy for TempDir { |
| 190 | fn copy_from<P, S>(&self, source: P, patterns: &[S]) -> Result<(), FixtureError> |
| 191 | where |
| 192 | P: AsRef<path::Path>, |
| 193 | S: AsRef<str>, |
| 194 | { |
| 195 | copy_files(self.path(), source.as_ref(), patterns) |
| 196 | } |
| 197 | } |
| 198 | |
| 199 | impl PathCopy for ChildPath { |
nothing calls this directly
no test coverage detected