Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
use auto_hash_map::AutoSet;
use crate::{ResolvedVc, VcValueTrait};
/// Implemented on `OperationVc` and `RawVc`.
pub trait CollectiblesSource {
fn take_collectibles<T: VcValueTrait>(self) -> AutoSet<ResolvedVc<T>>;
fn peek_collectibles<T: VcValueTrait>(self) -> AutoSet<ResolvedVc<T>>;
}