From 4d52ea9d0e901ee0b29a2c3c9cd14e4d496deb0b Mon Sep 17 00:00:00 2001 From: alari Date: Fri, 23 Aug 2024 12:21:28 +0300 Subject: [PATCH] NodeValue : + Send --- src/parser/node.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/parser/node.rs b/src/parser/node.rs index 43e0b0a..b4e5174 100644 --- a/src/parser/node.rs +++ b/src/parser/node.rs @@ -206,7 +206,7 @@ impl Default for Node { } /// Contents of the specific AST node. -pub trait NodeValue : Debug + Downcast { +pub trait NodeValue : Debug + Downcast + Send { /// Output HTML corresponding to this node using Renderer API. /// /// Example implementation looks like this: