esp_idf_sys

Type Alias ListItem_t

Source
pub type ListItem_t = xLIST_ITEM;

Aliased Type§

struct ListItem_t {
    pub xItemValue: u32,
    pub pxNext: *mut xLIST_ITEM,
    pub pxPrevious: *mut xLIST_ITEM,
    pub pvOwner: *mut c_void,
    pub pxContainer: *mut xLIST,
}

Fields§

§xItemValue: u32§pxNext: *mut xLIST_ITEM§pxPrevious: *mut xLIST_ITEM§pvOwner: *mut c_void§pxContainer: *mut xLIST

Trait Implementations

Source§

impl Clone for xLIST_ITEM

Source§

fn clone(&self) -> xLIST_ITEM

Returns a copy of the value. Read more
1.0.0§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for xLIST_ITEM

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for xLIST_ITEM

Source§

fn default() -> Self

Returns the “default value” for a type. Read more
Source§

impl Copy for xLIST_ITEM