From 9f0e2352b71834f0f169a40601fab768ed775fcc Mon Sep 17 00:00:00 2001 From: James Date: Tue, 30 Jan 2018 18:30:18 +1100 Subject: [PATCH] Describe DownloadProgress --- src/installer.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/installer.rs b/src/installer.rs index 9234bbf..4f9b41c 100644 --- a/src/installer.rs +++ b/src/installer.rs @@ -43,6 +43,7 @@ pub struct InstallerFramework { config: Config, } +/// Used to track the amount of data that has been downloaded during a HTTP request. struct DownloadProgress { downloaded: usize, }