Merge pull request #103 from theunkn0wn1/doc/time

Document remainder of embassy::time
This commit is contained in:
xoviat
2021-03-24 07:26:48 -05:00
committed by GitHub
2 changed files with 76 additions and 0 deletions

View File

@ -4,6 +4,9 @@ use core::pin::Pin;
pub trait Delay {
type DelayFuture<'a>: Future<Output = ()> + 'a;
/// Future that completes after now + millis
fn delay_ms<'a>(self: Pin<&'a mut Self>, millis: u64) -> Self::DelayFuture<'a>;
/// Future that completes after now + micros
fn delay_us<'a>(self: Pin<&'a mut Self>, micros: u64) -> Self::DelayFuture<'a>;
}