pub trait NodeEntry:
Send
+ Sync
+ NonLocalValue
+ ValueDebug {
// Required method
fn entry(
self: Vc<Self>,
data: Value<ContentSourceData>,
) -> Vc<NodeRenderingEntry>
where Self: Sized;
// Provided method
fn entries(self: Vc<Self>) -> Vc<NodeRenderingEntries>
where Self: Sized { ... }
}
Expand description
Trait that allows to get the entry module for rendering something in Node.js