rustHow to add second to time in Rust
Adding seconds to a time in Rust can be done using the add_secs method of the std::time::SystemTime struct. This method takes a u64 representing the number of seconds to add to the time.
Example code
use std::time::{SystemTime, UNIX_EPOCH};
let start = SystemTime::now();
let ten_seconds_later = start.add_secs(10);
Output example
ten_seconds_later = SystemTime { tv_sec: 1599450090, tv_nsec: 845005050 }
Code explanation
use std::time::{SystemTime, UNIX_EPOCH};: imports theSystemTimeandUNIX_EPOCHstructs from thestd::timemodule.let start = SystemTime::now();: creates aSystemTimeobject representing the current time.let ten_seconds_later = start.add_secs(10);: adds 10 seconds to thestartSystemTimeobject and stores the result in theten_seconds_latervariable.
Helpful links
Related
More of Rust
- Regex example to match multiline string in Rust?
- How to map a Rust slice?
- How to push an element to a Rust slice?
- How to match whitespace with a regex in Rust?
- How to replace strings using Rust regex?
- How to create a HashMap of structs in Rust?
- How to sort a Rust HashMap?
- How to convert a u8 slice to a hex string in Rust?
- How to compile a regex in Rust?
- How to use regex captures in Rust?
See more codes...