[][src]Struct mynewt::kernel::os::os_time_change_info

#[repr(C)]
pub struct os_time_change_info { pub tci_prev_tv: *const os_timeval, pub tci_prev_tz: *const os_timezone, pub tci_cur_tv: *const os_timeval, pub tci_cur_tz: *const os_timezone, pub tci_newly_synced: bool, }

Represents a time change. Passed to time change listeners when the current time-of-day is set.

Fields

tci_prev_tv: *const os_timeval

UTC time prior to change.

tci_prev_tz: *const os_timezone

Time zone prior to change.

tci_cur_tv: *const os_timeval

UTC time after change.

tci_cur_tz: *const os_timezone

Time zone after change.

tci_newly_synced: bool

Trait Implementations

impl Default for os_time_change_info[src]

Auto Trait Implementations

impl !Send for os_time_change_info

impl !Sync for os_time_change_info

Blanket Implementations

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> From<T> for T[src]

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

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.

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

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

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