useheim_common::prelude::*;usecrate::{sys, Time};/// Returns future which resolves into the system boot [Time]
/// since the UNIX epoch.
////// [Time]: ./struct.Time.html
pubfnboot_time()-> impl Future<Output = Result<Time>>{// TODO: Cache the successful value, as it can't change later
sys::boot_time()}