Skip to content

Commit

Permalink
net: implement Clone for NamedPipeInfo (#6586)
Browse files Browse the repository at this point in the history
  • Loading branch information
Tacklebox authored May 25, 2024
1 parent 12920ce commit 0a85a96
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tokio/src/net/windows/named_pipe.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2626,7 +2626,7 @@ pub enum PipeEnd {
/// Information about a named pipe.
///
/// Constructed through [`NamedPipeServer::info`] or [`NamedPipeClient::info`].
#[derive(Debug)]
#[derive(Debug, Clone)]
#[non_exhaustive]
pub struct PipeInfo {
/// Indicates the mode of a named pipe.
Expand Down

0 comments on commit 0a85a96

Please sign in to comment.