pub trait CollectiblesSource {
// Required methods
fn drop_collectibles<T: VcValueTrait>(self);
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 drop_collectibles<T: VcValueTrait>(self)
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".