File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -394,7 +394,7 @@ impl ReadObject {
394
394
where
395
395
T : Into < i64 > ,
396
396
{
397
- self . request . if_generation_match = Option :: Some ( v. into ( ) ) ;
397
+ self . request . if_generation_match = Some ( v. into ( ) ) ;
398
398
self
399
399
}
400
400
@@ -412,7 +412,7 @@ impl ReadObject {
412
412
where
413
413
T : Into < i64 > ,
414
414
{
415
- self . request . if_generation_not_match = Option :: Some ( v. into ( ) ) ;
415
+ self . request . if_generation_not_match = Some ( v. into ( ) ) ;
416
416
self
417
417
}
418
418
@@ -430,7 +430,7 @@ impl ReadObject {
430
430
where
431
431
T : Into < i64 > ,
432
432
{
433
- self . request . if_metageneration_match = Option :: Some ( v. into ( ) ) ;
433
+ self . request . if_metageneration_match = Some ( v. into ( ) ) ;
434
434
self
435
435
}
436
436
@@ -448,7 +448,7 @@ impl ReadObject {
448
448
where
449
449
T : Into < i64 > ,
450
450
{
451
- self . request . if_metageneration_not_match = Option :: Some ( v. into ( ) ) ;
451
+ self . request . if_metageneration_not_match = Some ( v. into ( ) ) ;
452
452
self
453
453
}
454
454
@@ -466,7 +466,7 @@ impl ReadObject {
466
466
where
467
467
T : Into < control:: model:: CommonObjectRequestParams > ,
468
468
{
469
- self . request . common_object_request_params = Option :: Some ( v. into ( ) ) ;
469
+ self . request . common_object_request_params = Some ( v. into ( ) ) ;
470
470
self
471
471
}
472
472
You can’t perform that action at this time.
0 commit comments