uv-types 0.0.40

This is an internal component crate of uv
Documentation
1
2
3
4
5
6
7
8
9
use std::sync::Arc;
use uv_distribution_types::{CachedDist, DistributionId};
use uv_once_map::OnceMap;

#[derive(Default, Clone)]
pub struct InFlight {
    /// The in-flight distribution downloads.
    pub downloads: Arc<OnceMap<DistributionId, Result<CachedDist, String>>>,
}