cargo update

This commit is contained in:
Mikaël Cluseau
2025-09-04 05:41:20 +02:00
parent 6f059287ec
commit 1e047afac3
2 changed files with 143 additions and 119 deletions

View File

@ -33,7 +33,7 @@ impl Client {
self.get_json("clusters").await
}
pub fn cluster(&self, name: String) -> Cluster {
pub fn cluster(&self, name: String) -> Cluster<'_> {
Cluster { dls: self, name }
}
@ -41,7 +41,7 @@ impl Client {
self.get_json("hosts").await
}
pub fn host(&self, name: String) -> Host {
pub fn host(&self, name: String) -> Host<'_> {
Host { dls: self, name }
}