pub struct Time {
pub utc: i64,
pub time_zone: i16,
}
Expand description
Response fields from Time from the host
Fields§
§utc: i64
UTC, in 100ns units since Jan 1 1601.
(corresponds to RtlGetSystemTime()
on the Host)
time_zone: i16
Time zone (as minutes from UTC)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Time
impl RefUnwindSafe for Time
impl Send for Time
impl Sync for Time
impl Unpin for Time
impl UnwindSafe for Time
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more