Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
abdolence committed Aug 2, 2024
1 parent ca1aafa commit c1efd15
Showing 1 changed file with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2395,9 +2395,12 @@ pub async fn storage_objects_insert_ext_stream<S>(
) -> Result<
crate::google_rest_apis::storage_v1::models::Object,
Error<StoragePeriodObjectsPeriodInsertError>,
> where S: futures::stream::TryStream + Send + Sync + 'static,
S::Error: Into<Box<dyn std::error::Error + Send + Sync>>,
Bytes: From<S::Ok> {
>
where
S: futures::stream::TryStream + Send + Sync + 'static,
S::Error: Into<Box<dyn std::error::Error + Send + Sync>>,
Bytes: From<S::Ok>,
{
let local_var_configuration = configuration;

// unbox the parameters
Expand Down

0 comments on commit c1efd15

Please sign in to comment.