From ad8e68b8e0e60ef33423e14a94a5a8780f57e7f6 Mon Sep 17 00:00:00 2001 From: Erich Gubler Date: Fri, 10 May 2024 12:02:09 -0400 Subject: [PATCH] docs: document `{ExecutionReport,MetadataTest}PathError` --- moz-webgpu-cts/src/shared.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/moz-webgpu-cts/src/shared.rs b/moz-webgpu-cts/src/shared.rs index 96820e4..dcec295 100644 --- a/moz-webgpu-cts/src/shared.rs +++ b/moz-webgpu-cts/src/shared.rs @@ -593,6 +593,7 @@ impl<'a> TestPath<'a> { } } +/// An error encountered during [`TestPath::from_execution_report`]. #[derive(Debug)] pub struct ExecutionReportPathError<'a> { test_url_path: &'a str, @@ -612,6 +613,7 @@ impl Display for ExecutionReportPathError<'_> { } } +/// An error encountered during [`TestPath::from_metadata_test`]. #[derive(Debug)] pub struct MetadataTestPathError<'a> { rel_meta_file_path: &'a Path,