Skip to content

Commit 9415bfe

Browse files
authored
Fix lint in azure_storage_blog (Azure#3049)
1 parent 9f965af commit 9415bfe

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

sdk/storage/azure_storage_blob/src/models/extensions.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ use std::collections::HashMap;
1212
/// # Arguments
1313
///
1414
/// * `self` - The options bag to be modified.
15-
impl<'a> PageBlobClientCreateOptions<'a> {
15+
impl PageBlobClientCreateOptions<'_> {
1616
pub fn with_if_not_exists(self) -> Self {
1717
Self {
1818
if_none_match: Some("*".into()),
@@ -25,7 +25,7 @@ impl<'a> PageBlobClientCreateOptions<'a> {
2525
/// # Arguments
2626
///
2727
/// * `self` - The options bag to be modified.
28-
impl<'a> AppendBlobClientCreateOptions<'a> {
28+
impl AppendBlobClientCreateOptions<'_> {
2929
pub fn with_if_not_exists(self) -> Self {
3030
Self {
3131
if_none_match: Some("*".into()),
@@ -38,7 +38,7 @@ impl<'a> AppendBlobClientCreateOptions<'a> {
3838
/// # Arguments
3939
///
4040
/// * `self` - The options bag to be modified.
41-
impl<'a> BlockBlobClientUploadBlobFromUrlOptions<'a> {
41+
impl BlockBlobClientUploadBlobFromUrlOptions<'_> {
4242
pub fn with_if_not_exists(self) -> Self {
4343
Self {
4444
if_none_match: Some("*".into()),
@@ -52,7 +52,7 @@ impl<'a> BlockBlobClientUploadBlobFromUrlOptions<'a> {
5252
///
5353
/// * `self` - The options bag to be modified.
5454
/// * `tags` - A HashMap of key-value pairs representing the blob tags.
55-
impl<'a> BlockBlobClientUploadOptions<'a> {
55+
impl BlockBlobClientUploadOptions<'_> {
5656
pub fn with_tags(self, tags: HashMap<String, String>) -> Self {
5757
let tags_string = tags
5858
.iter()

0 commit comments

Comments
 (0)