diff --git a/src/rust/cli/client.rs b/src/rust/cli/client.rs index fe0bea3325..f6dce598ba 100644 --- a/src/rust/cli/client.rs +++ b/src/rust/cli/client.rs @@ -102,7 +102,7 @@ pub enum CallType { arg_enum! { pub enum UploadProtocol { Simple, - Resumable + // Resumable // This seems to be lost during the async conversion } } @@ -110,7 +110,7 @@ impl AsRef for UploadProtocol { fn as_ref(&self) -> &str { match *self { UploadProtocol::Simple => "simple", - UploadProtocol::Resumable => "resumable", + // UploadProtocol::Resumable => "resumable", } } }