[][src]Struct rpi_pico_sdk_sys::repeating_timer

#[repr(C)]pub struct repeating_timer {
    pub delay_us: i64,
    pub pool: *mut alarm_pool_t,
    pub alarm_id: alarm_id_t,
    pub callback: repeating_timer_callback_t,
    pub user_data: *mut c_void,
}

\brief Information about a repeating timer \ingroup repeating_timer \return

Fields

delay_us: i64pool: *mut alarm_pool_talarm_id: alarm_id_tcallback: repeating_timer_callback_tuser_data: *mut c_void

Trait Implementations

impl Clone for repeating_timer[src]

impl Copy for repeating_timer[src]

impl Debug for repeating_timer[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.