Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

时钟工具

Feature: clock

API

Clock

方法参数返回说明
new-Clock创建实例
now_s-i64当前时间戳(秒)
now_ms-i64当前时间戳(毫秒)

使用示例

#![allow(unused)]
fn main() {
let timestamp_sec = state.clock.now_s();
let timestamp_ms = state.clock.now_ms();
}