#[repr(C)]pub struct _cef_basetime_t {
pub val: i64,
}Expand description
Represents a wall clock time in UTC. Values are not guaranteed to be monotonically non-decreasing and are subject to large amounts of skew. Time is stored internally as microseconds since the Windows epoch (1601).
This is equivalent of Chromium base::Time (see base/time/time.h).
Fields§
§val: i64Trait Implementations§
Source§impl Clone for _cef_basetime_t
impl Clone for _cef_basetime_t
Source§fn clone(&self) -> _cef_basetime_t
fn clone(&self) -> _cef_basetime_t
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for _cef_basetime_t
impl Debug for _cef_basetime_t
impl Copy for _cef_basetime_t
Auto Trait Implementations§
impl Freeze for _cef_basetime_t
impl RefUnwindSafe for _cef_basetime_t
impl Send for _cef_basetime_t
impl Sync for _cef_basetime_t
impl Unpin for _cef_basetime_t
impl UnwindSafe for _cef_basetime_t
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