Skip to content

Commit 8db4b26

Browse files
bombsimonclaude
authored andcommitted
Fix clippy unnecessary qualification warnings
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent d2ed1b0 commit 8db4b26

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • crates/deadpool-redis/src/cluster

crates/deadpool-redis/src/cluster/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,12 +45,12 @@ impl Connection {
4545
}
4646

4747
/// Returns the unique [`ObjectId`] of this [`Connection`].
48-
pub fn id(this: &Self) -> deadpool::managed::ObjectId {
48+
pub fn id(this: &Self) -> ObjectId {
4949
Object::id(&this.conn)
5050
}
5151

5252
/// Returns the [`Metrics`] of this [`Connection`].
53-
pub fn metrics(this: &Self) -> &deadpool::managed::Metrics {
53+
pub fn metrics(this: &Self) -> &Metrics {
5454
Object::metrics(&this.conn)
5555
}
5656
}

0 commit comments

Comments
 (0)