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