Skip to content
This repository was archived by the owner on Oct 30, 2019. It is now read-only.

Commit c1f2b64

Browse files
committed
rustfmt + simpler Debugs
Signed-off-by: Yoshua Wuyts <[email protected]>
1 parent 81270a4 commit c1f2b64

File tree

4 files changed

+10
-39
lines changed

4 files changed

+10
-39
lines changed

runtime-native/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ async-datagram = "2.2.0"
2121
juliex = "0.3.0-alpha.6"
2222
lazy_static = "1.3.0"
2323
romio = "0.3.0-alpha.7"
24-
futures-timer = "0.2.0"
24+
futures-timer = "0.2.1"
2525

2626
[target.'cfg(target_arch = "wasm32")'.dependencies]
2727
futures01 = { package = "futures", version = "0.1" }

runtime-native/src/not_wasm32/time.rs

+2-22
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
use std::fmt;
21
use std::pin::Pin;
32
use std::task::{Context, Poll};
43
use std::time::Instant;
54

65
use futures::prelude::*;
76
use futures_timer::{Delay as AsyncDelay, Interval as AsyncInterval};
87

8+
#[derive(Debug)]
99
pub(crate) struct Delay {
1010
pub(crate) async_delay: AsyncDelay,
1111
}
@@ -22,16 +22,7 @@ impl Future for Delay {
2222
}
2323
}
2424

25-
// TODO: implement this
26-
impl fmt::Debug for Delay {
27-
// fmt::Display::fmt(self.async_delay, f)
28-
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> Result<(), fmt::Error> {
29-
f.debug_struct("Delay")
30-
.field("when", &"...")
31-
.finish()
32-
}
33-
}
34-
25+
#[derive(Debug)]
3526
pub(crate) struct Interval {
3627
pub(crate) async_interval: AsyncInterval,
3728
}
@@ -47,14 +38,3 @@ impl Stream for Interval {
4738
Poll::Ready(Some(Instant::now()))
4839
}
4940
}
50-
51-
// TODO: implement this
52-
impl fmt::Debug for Interval {
53-
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> Result<(), fmt::Error> {
54-
// fmt::Display::fmt(self.async_interval, f)
55-
f.debug_struct("Interval")
56-
.field("delay", &"...")
57-
.field("interval", &"...")
58-
.finish()
59-
}
60-
}

runtime-tokio/src/lib.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,12 @@ use std::thread;
2626
use std::time::{Duration, Instant};
2727

2828
mod tcp;
29-
mod udp;
3029
mod time;
30+
mod udp;
3131

3232
use tcp::{TcpListener, TcpStream};
33-
use udp::UdpSocket;
3433
use time::{Delay, Interval};
34+
use udp::UdpSocket;
3535

3636
/// The default Tokio runtime.
3737
#[derive(Debug)]

runtime-tokio/src/time.rs

+5-14
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
use std::fmt;
21
use std::pin::Pin;
32
use std::task::{Context, Poll};
43
use std::time::Instant;
@@ -7,6 +6,7 @@ use futures::compat::Compat01As03;
76
use futures::prelude::*;
87
use tokio::timer::{Delay as TokioDelay, Interval as TokioInterval};
98

9+
#[derive(Debug)]
1010
pub(crate) struct Delay {
1111
pub(crate) tokio_delay: TokioDelay,
1212
}
@@ -24,12 +24,7 @@ impl Future for Delay {
2424
}
2525
}
2626

27-
impl fmt::Debug for Delay {
28-
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> Result<(), fmt::Error> {
29-
fmt::Debug::fmt(&self.tokio_delay, f)
30-
}
31-
}
32-
27+
#[derive(Debug)]
3328
pub(crate) struct Interval {
3429
pub(crate) tokio_interval: TokioInterval,
3530
}
@@ -43,13 +38,9 @@ impl Stream for Interval {
4338
fn poll_next(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Option<Self::Item>> {
4439
let mut stream = Compat01As03::new(&mut self.tokio_interval);
4540
// https://docs.rs/tokio/0.1.20/tokio/timer/struct.Error.html
46-
futures::ready!(Pin::new(&mut stream).poll_next(cx)).unwrap().unwrap();
41+
futures::ready!(Pin::new(&mut stream).poll_next(cx))
42+
.unwrap()
43+
.unwrap();
4744
Poll::Ready(Some(Instant::now()))
4845
}
4946
}
50-
51-
impl fmt::Debug for Interval {
52-
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> Result<(), fmt::Error> {
53-
fmt::Debug::fmt(&self.tokio_interval, f)
54-
}
55-
}

0 commit comments

Comments
 (0)