acme: reduce unnecessary cloning

This commit is contained in:
Dirkjan Ochtman 2022-05-10 15:22:23 +02:00 committed by Dirkjan Ochtman
parent 5be34c546c
commit 8082166924
1 changed files with 2 additions and 2 deletions

View File

@ -175,9 +175,9 @@ impl<'de> Deserialize<'de> for Account {
})?, })?,
client: Client { client: Client {
client: client(), client: client(),
urls: creds.urls.clone(), urls: creds.urls,
}, },
id: creds.id.clone(), id: creds.id,
}), }),
}) })
} }