pub async fn upload_with_factory<ARF: AsyncReaderFactory>(
    project_id: &str,
    name: &str,
    content_type: &str,
    content_length: u64,
    expires: &DateTime<Utc>,
    reader_factory: ARF,
    retry: &Retry,
    object_service: &Object,
    upload_id: &str
) -> Result<()>
Expand description

Upload an object using an AsyncReaderFactory. This is useful for advanced cases where one of the convenience functions is not adequate.