[][src]Struct mextk_sys::OSCalendarTime

#[repr(C)]pub struct OSCalendarTime {
    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 msec: c_int,
    pub usec: c_int,
}

Fields

sec: c_intmin: c_inthour: c_intmday: c_intmon: c_intyear: c_intwday: c_intyday: c_intmsec: c_intusec: c_int

Trait Implementations

impl Clone for OSCalendarTime[src]

impl Copy for OSCalendarTime[src]

impl Debug for OSCalendarTime[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.