Home
last modified time | relevance | path

Searched refs:SystemTimeError (Results 1 – 2 of 2) sorted by relevance

/wasmtime-44.0.1/crates/cache/src/worker/tests/
H A Dsystem_time_stub.rs2 use std::time::{Duration, SystemTime, SystemTimeError};
18 pub fn duration_since(&self, earlier: SystemTime) -> Result<Duration, SystemTimeError> { in duration_since() argument
/wasmtime-44.0.1/crates/wasi/src/
H A Dclocks.rs204 impl From<std::time::SystemTimeError> for DatetimeError {
205 fn from(_: std::time::SystemTimeError) -> Self { in from()