Trait CollectiblesSource

Source
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§

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§

Source§

impl CollectiblesSource for RawVc

This implementation of CollectiblesSource assumes that self is a RawVc::TaskOutput.

Source§

impl<T> CollectiblesSource for OperationVc<T>
where T: ?Sized,