#[repr(C)]pub struct timeb {
pub time: time_t,
pub millitm: c_ushort,
pub timezone: c_short,
pub dstflag: c_short,
}๐Deprecated
Expand description
Fieldsยง
ยงtime: time_t๐Deprecated
The seconds portion of the current time.
millitm: c_ushort๐Deprecated
The milliseconds portion of the current time.
timezone: c_short๐Deprecated
The local timezone in minutes west of Greenwich.
dstflag: c_short๐Deprecated
TRUE if Daylight Savings Time is in effect.
Trait Implementationsยง
Auto Trait Implementationsยง
impl Freeze for timeb
impl RefUnwindSafe for timeb
impl Send for timeb
impl Sync for timeb
impl Unpin for timeb
impl UnsafeUnpin for timeb
impl UnwindSafe for timeb
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