#[repr(C)]pub struct tm {
pub tm_sec: i32,
pub tm_min: i32,
pub tm_hour: i32,
pub tm_mday: i32,
pub tm_mon: i32,
pub tm_year: i32,
pub tm_wday: i32,
pub tm_yday: i32,
pub tm_isdst: i32,
pub tm_gmtoff: i64,
pub tm_zone: *const i8,
}Fields§
§tm_sec: i32§tm_min: i32§tm_hour: i32§tm_mday: i32§tm_mon: i32§tm_year: i32§tm_wday: i32§tm_yday: i32§tm_isdst: i32§tm_gmtoff: i64§tm_zone: *const i8Trait Implementations§
impl Copy for tm
impl Eq for tm
impl StructuralPartialEq for tm
Auto Trait Implementations§
impl Freeze for tm
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.