pub trait TypedForInput: VcValueType { }
Expand description
Marker trait that a turbo_tasks::value is prepared for serialization as
Value<...>
input.
Either use #[turbo_tasks::value(serialization = "auto_for_input")]
or
avoid Value<...>
in favor of a real Vc.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.