Module rune_modules::time [−][src]
Expand description
The native time module for the Rune Language.
Usage
Add the following to your Cargo.toml:
rune-modules = { version = "0.10.0", features = ["time"] }Install it into your context:
let mut context = rune::Context::with_default_modules()?;
context.install(&rune_modules::time::module(true)?)?;Use it in Rune:
ⓘ
use time;
fn main() {
time::sleep(time::Duration::from_secs(10)).await;
println("Message after 10 seconds!");
}Functions
Construct the time module.