Enum cargo::sources::registry::LoadResponse
source · pub enum LoadResponse {
CacheValid,
Data {
raw_data: Vec<u8>,
index_version: Option<String>,
},
NotFound,
}
Expand description
Result from loading data from a registry.
Variants§
CacheValid
The cache is valid. The cached data should be used.
Data
The cache is out of date. Returned data should be used.
NotFound
The requested crate was found.