Skip to content

Commit

Permalink
feat: derive Clone for udp::Transmit
Browse files Browse the repository at this point in the history
  • Loading branch information
dignifiedquire committed May 4, 2023
1 parent 47205e0 commit da41e0a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion quinn-udp/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ impl Default for RecvMeta {
}

/// An outgoing packet
#[derive(Debug)]
#[derive(Debug, Clone)]
pub struct Transmit {
/// The socket this datagram should be sent to
pub destination: SocketAddr,
Expand Down

0 comments on commit da41e0a

Please sign in to comment.