Skip to content

Commit

Permalink
add: debug and equal traits in tcp conn
Browse files Browse the repository at this point in the history
  • Loading branch information
justRkive committed Nov 2, 2023
1 parent 5eca966 commit b682653
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/client/tcp_connection.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ use std::io::ErrorKind;


type ClientResult<T> = Result<T, ClientError>;
#[derive(Clone,Copy)]
#[derive(Clone,Copy, Debug, PartialEq, Eq)]
pub struct ClientTCPConnection {
/// Client address
server_addr: IpAddr,
Expand Down

0 comments on commit b682653

Please sign in to comment.