pub trait CollectiblesSource {
// Required methods
fn take_collectibles<T: VcValueTrait>(self) -> AutoSet<ResolvedVc<T>>;
fn peek_collectibles<T: VcValueTrait>(self) -> AutoSet<ResolvedVc<T>>;
}
Expand description
Implemented on OperationVc
and RawVc
.
Required Methods§
fn take_collectibles<T: VcValueTrait>(self) -> AutoSet<ResolvedVc<T>>
fn peek_collectibles<T: VcValueTrait>(self) -> AutoSet<ResolvedVc<T>>
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.
Implementors§
impl CollectiblesSource for RawVc
This implementation of CollectiblesSource
assumes that self
is a RawVc::TaskOutput
.