diff options
Diffstat (limited to 'src/eval/node.rs')
| -rw-r--r-- | src/eval/node.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/eval/node.rs b/src/eval/node.rs index d909fc7d..665550b0 100644 --- a/src/eval/node.rs +++ b/src/eval/node.rs @@ -71,7 +71,7 @@ impl Node { /// Create an inline-level node. pub fn inline<T>(node: T) -> Self where - T: Layout + Debug + Hash + 'static, + T: Layout + Debug + Hash + Sync + Send + 'static, { Self::Inline(node.pack()) } @@ -79,7 +79,7 @@ impl Node { /// Create a block-level node. pub fn block<T>(node: T) -> Self where - T: Layout + Debug + Hash + 'static, + T: Layout + Debug + Hash + Sync + Send + 'static, { Self::Block(node.pack()) } |
