Sign in
apache
/
iggy
/
refs/heads/change_batch_binary_format
/
.
/
examples
/
src
/
shared
/
utils.rs
blob: d92b58c01b4192f9cc757652a31c137007f75e4f [
file
] [
log
] [
blame
]
use
std
::
time
::{
SystemTime
,
UNIX_EPOCH
};
pub
fn
timestamp
()
->
u64
{
SystemTime
::
now
()
.
duration_since
(
UNIX_EPOCH
)
.
unwrap
()
.
as_micros
()
as
u64
}