We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Accessor
1 parent dbc12db commit 9d79694Copy full SHA for 9d79694
crates/wasi/src/p3/clocks/host.rs
@@ -47,7 +47,7 @@ where
47
T: WasiClocksView + 'static,
48
{
49
async fn wait_until<U>(
50
- store: &mut Accessor<U, Self>,
+ store: &Accessor<U, Self>,
51
when: monotonic_clock::Instant,
52
) -> wasmtime::Result<()> {
53
let clock_now = store.with(|mut view| view.get().clocks().monotonic_clock.now());
@@ -58,7 +58,7 @@ where
58
}
59
60
async fn wait_for<U>(
61
- _store: &mut Accessor<U, Self>,
+ _store: &Accessor<U, Self>,
62
duration: monotonic_clock::Duration,
63
64
if duration > 0 {
0 commit comments