pub trait SourceTransform:
Send
+ Sync
+ NonLocalValue
+ ValueDebug {
// Required method
fn transform(
self: Vc<Self>,
source: Vc<Box<dyn Source>>,
) -> Vc<Box<dyn Source>>
where Self: Sized;
}
pub trait SourceTransform:
Send
+ Sync
+ NonLocalValue
+ ValueDebug {
// Required method
fn transform(
self: Vc<Self>,
source: Vc<Box<dyn Source>>,
) -> Vc<Box<dyn Source>>
where Self: Sized;
}