mirror of
https://github.com/embassy-rs/embassy.git
synced 2024-11-22 06:42:32 +00:00
This one is for ci/rustfmt
This commit is contained in:
parent
4bbcc2a7fb
commit
245e7d3bc2
@ -33,7 +33,7 @@ use core::task::Poll;
|
||||
/// // Wait for the value to be initialized
|
||||
/// // and get a static reference it
|
||||
/// assert_eq!(VALUE.get().await, &20);
|
||||
///
|
||||
///
|
||||
/// };
|
||||
/// block_on(f)
|
||||
/// ```
|
||||
@ -56,7 +56,6 @@ impl<T> OnceLock<T> {
|
||||
/// Get a reference to the underlying value, waiting for it to be set.
|
||||
/// If the value is already set, this will return immediately.
|
||||
pub async fn get(&self) -> &T {
|
||||
|
||||
poll_fn(|cx| match self.try_get() {
|
||||
Some(data) => Poll::Ready(data),
|
||||
None => {
|
||||
|
Loading…
Reference in New Issue
Block a user