1
0
mirror of https://github.com/fafhrd91/actix-net synced 2025-02-17 13:33:31 +01:00

actix-rt: Run rustfmt

Signed-off-by: Jonathas-Conceicao <jadoliveira@inf.ufpel.edu.br>
This commit is contained in:
Jonathas-Conceicao 2020-04-04 19:03:53 -03:00 committed by Jonathas Conceição
parent 9addf1a36b
commit 69e8df9d62

View File

@ -8,7 +8,10 @@ use std::{fmt, thread};
use futures_channel::mpsc::{unbounded, UnboundedReceiver, UnboundedSender};
use futures_channel::oneshot::{channel, Canceled, Sender};
use futures_util::{future::{self, Future, FutureExt}, stream::Stream};
use futures_util::{
future::{self, Future, FutureExt},
stream::Stream,
};
use crate::runtime::Runtime;
use crate::system::System;
@ -180,8 +183,7 @@ impl Arbiter {
// Box the future and push it to the queue, this results in double boxing
// because the executor boxes the future again, but works for now
Q.with(move |cell| {
cell.borrow_mut()
.push(Pin::from(Box::alloc().init(future)))
cell.borrow_mut().push(Pin::from(Box::alloc().init(future)))
});
}
});