diff --git a/src/types/upload.rs b/src/types/upload.rs index a57d306d..ab3bda2f 100644 --- a/src/types/upload.rs +++ b/src/types/upload.rs @@ -55,7 +55,9 @@ impl Upload { self.0.content_type.as_deref() } - /// Convert to a read + /// Convert to a `Read`. + /// + /// **Note**: this is a *synchronous/blocking* reader. pub fn into_read(self) -> impl Read + Sync + Send + 'static { self.0.content }