time: add getter for Interval's period (#3705)

This commit is contained in:
madjack
2021-04-15 14:21:52 +02:00
committed by GitHub
parent 9eeec039f2
commit c8a6bb0b90
+5
View File
@@ -176,4 +176,9 @@ impl Interval {
// Return the current instant
Poll::Ready(now)
}
/// Returns the period of the interval.
pub fn period(&self) -> Duration {
self.period
}
}