aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/task_source/file_reading.rs
diff options
context:
space:
mode:
Diffstat (limited to 'components/script/task_source/file_reading.rs')
-rw-r--r--components/script/task_source/file_reading.rs5
1 files changed, 4 insertions, 1 deletions
diff --git a/components/script/task_source/file_reading.rs b/components/script/task_source/file_reading.rs
index 20b49a239b4..646778ffea5 100644
--- a/components/script/task_source/file_reading.rs
+++ b/components/script/task_source/file_reading.rs
@@ -10,7 +10,10 @@ use crate::task_source::{TaskSource, TaskSourceName};
use msg::constellation_msg::PipelineId;
#[derive(JSTraceable)]
-pub struct FileReadingTaskSource(pub Box<dyn ScriptChan + Send + 'static>, pub PipelineId);
+pub struct FileReadingTaskSource(
+ pub Box<dyn ScriptChan + Send + 'static>,
+ #[no_trace] pub PipelineId,
+);
impl Clone for FileReadingTaskSource {
fn clone(&self) -> FileReadingTaskSource {