@@ -12,7 +12,7 @@ use std::collections::HashMap;
12
12
/// # Arguments
13
13
///
14
14
/// * `self` - The options bag to be modified.
15
- impl < ' a > PageBlobClientCreateOptions < ' a > {
15
+ impl PageBlobClientCreateOptions < ' _ > {
16
16
pub fn with_if_not_exists ( self ) -> Self {
17
17
Self {
18
18
if_none_match : Some ( "*" . into ( ) ) ,
@@ -25,7 +25,7 @@ impl<'a> PageBlobClientCreateOptions<'a> {
25
25
/// # Arguments
26
26
///
27
27
/// * `self` - The options bag to be modified.
28
- impl < ' a > AppendBlobClientCreateOptions < ' a > {
28
+ impl AppendBlobClientCreateOptions < ' _ > {
29
29
pub fn with_if_not_exists ( self ) -> Self {
30
30
Self {
31
31
if_none_match : Some ( "*" . into ( ) ) ,
@@ -38,7 +38,7 @@ impl<'a> AppendBlobClientCreateOptions<'a> {
38
38
/// # Arguments
39
39
///
40
40
/// * `self` - The options bag to be modified.
41
- impl < ' a > BlockBlobClientUploadBlobFromUrlOptions < ' a > {
41
+ impl BlockBlobClientUploadBlobFromUrlOptions < ' _ > {
42
42
pub fn with_if_not_exists ( self ) -> Self {
43
43
Self {
44
44
if_none_match : Some ( "*" . into ( ) ) ,
@@ -52,7 +52,7 @@ impl<'a> BlockBlobClientUploadBlobFromUrlOptions<'a> {
52
52
///
53
53
/// * `self` - The options bag to be modified.
54
54
/// * `tags` - A HashMap of key-value pairs representing the blob tags.
55
- impl < ' a > BlockBlobClientUploadOptions < ' a > {
55
+ impl BlockBlobClientUploadOptions < ' _ > {
56
56
pub fn with_tags ( self , tags : HashMap < String , String > ) -> Self {
57
57
let tags_string = tags
58
58
. iter ( )
0 commit comments