Skip to content

Commit

Permalink
fmt: add trailing commas to windows signals module
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonathan Kelley committed Aug 30, 2022
1 parent b6e155f commit 11aaa27
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tokio/src/signal/windows.rs
Expand Up @@ -260,7 +260,7 @@ pub fn ctrl_close() -> io::Result<CtrlClose> {
#[must_use = "streams do nothing unless polled"]
#[derive(Debug)]
pub struct CtrlClose {
inner: RxFuture
inner: RxFuture,
}

impl CtrlClose {
Expand Down Expand Up @@ -357,7 +357,7 @@ pub fn ctrl_shutdown() -> io::Result<CtrlShutdown> {
#[must_use = "streams do nothing unless polled"]
#[derive(Debug)]
pub struct CtrlShutdown {
inner: RxFuture
inner: RxFuture,
}

impl CtrlShutdown {
Expand Down Expand Up @@ -454,7 +454,7 @@ pub fn ctrl_logoff() -> io::Result<CtrlLogoff> {
#[must_use = "streams do nothing unless polled"]
#[derive(Debug)]
pub struct CtrlLogoff {
inner: RxFuture
inner: RxFuture,
}

impl CtrlLogoff {
Expand Down

0 comments on commit 11aaa27

Please sign in to comment.