pub trait ContentSourceProcessor:
Send
+ Sync
+ NonLocalValue
+ ValueDebug {
// Required method
fn process(
self: Vc<Self>,
content: Vc<ContentSourceContent>,
) -> Vc<ContentSourceContent>
where Self: Sized;
}
Expand description
A ContentSourceProcessor handles the final processing of an eventual ContentSourceContent.
Used in conjunction with WrappedGetContentSourceContent, this allows a [ContentSource] implementation to easily register a final process step over some inner ContentSource’s fully resolved [ContentSourceResult] and ContentSourceContent.