esp_idf_sys

Type Alias TaskParameters_t

Source
pub type TaskParameters_t = xTASK_PARAMETERS;

Aliased Type§

struct TaskParameters_t {
    pub pvTaskCode: Option<unsafe extern "C" fn(_: *mut c_void)>,
    pub pcName: *const i8,
    pub usStackDepth: u32,
    pub pvParameters: *mut c_void,
    pub uxPriority: u32,
    pub puxStackBuffer: *mut u8,
    pub xRegions: [xMEMORY_REGION; 1],
}

Fields§

§pvTaskCode: Option<unsafe extern "C" fn(_: *mut c_void)>§pcName: *const i8§usStackDepth: u32§pvParameters: *mut c_void§uxPriority: u32§puxStackBuffer: *mut u8§xRegions: [xMEMORY_REGION; 1]

Trait Implementations

Source§

impl Clone for xTASK_PARAMETERS

Source§

fn clone(&self) -> xTASK_PARAMETERS

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 xTASK_PARAMETERS

Source§

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

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

impl Default for xTASK_PARAMETERS

Source§

fn default() -> Self

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

impl Copy for xTASK_PARAMETERS