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
impl Clone for xTASK_PARAMETERS
Source§fn clone(&self) -> xTASK_PARAMETERS
fn clone(&self) -> xTASK_PARAMETERS
Returns a copy of the value. Read more
1.0.0§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more