pub type TaskIterator_t = TaskIterator;
Expand description
@brief Task Snapshot iterator
Used in xTaskGetNext(). Must be zero/null initialized on the first call.
Aliased Type§
struct TaskIterator_t {
pub uxCurrentListIndex: u32,
pub pxNextListItem: *mut xLIST_ITEM,
pub pxTaskHandle: *mut tskTaskControlBlock,
}
Fields§
§uxCurrentListIndex: u32
< Current task list index being traversed.
pxNextListItem: *mut xLIST_ITEM
< Next task list item will being traversed.
pxTaskHandle: *mut tskTaskControlBlock
< Current task handle being traversed.
Trait Implementations
Source§impl Clone for TaskIterator
impl Clone for TaskIterator
Source§fn clone(&self) -> TaskIterator
fn clone(&self) -> TaskIterator
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 moreSource§impl Debug for TaskIterator
impl Debug for TaskIterator
Source§impl Default for TaskIterator
impl Default for TaskIterator
Source§fn default() -> TaskIterator
fn default() -> TaskIterator
Returns the “default value” for a type. Read more