pub type DownloadResult<T> = Result<T, DownloadError>;
Expand description
The download result type
Aliased Type§
enum DownloadResult<T> {
Ok(T),
Err(DownloadError),
}
Variants§
Layout§
Note: Unable to compute type layout, possibly due to this type having generic parameters. Layout can only be computed for concrete, fully-instantiated types.