#[repr(C)]pub struct Tm {
pub sec: c_int,
pub min: c_int,
pub hour: c_int,
pub mday: c_int,
pub mon: c_int,
pub year: c_int,
pub wday: c_int,
pub yday: c_int,
pub isdst: c_int,
pub gmtoff: c_long,
pub zone: c_char,
}Fields§
§sec: c_int§min: c_int§hour: c_int§mday: c_int§mon: c_int§year: c_int§wday: c_int§yday: c_int§isdst: c_int§gmtoff: c_long§zone: c_charTrait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for Tm
impl Send for Tm
impl Sync for Tm
impl Unpin for Tm
impl UnwindSafe for Tm
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