Skip to content

Commit

Permalink
remove Clone from connect::Unnameable for now (#2502)
Browse files Browse the repository at this point in the history
  • Loading branch information
seanmonstar authored Dec 23, 2024
1 parent 2a7c1b6 commit 44ca5ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/connect.rs
Original file line number Diff line number Diff line change
Expand Up @@ -755,7 +755,7 @@ type BoxConn = Box<dyn AsyncConnWithInfo>;

pub(crate) mod sealed {
use super::*;
#[derive(Debug, Clone)]
#[derive(Debug)]
pub struct Unnameable(pub(super) Uri);

pin_project! {
Expand Down

1 comment on commit 44ca5ee

@jlizen
Copy link
Contributor

@jlizen jlizen commented on 44ca5ee Dec 23, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ah yeah, good call, missed that.

Please sign in to comment.