Struct esp_idf_sys::xTASK_PARAMETERS
source · [−]#[repr(C)]pub struct xTASK_PARAMETERS {
pub pvTaskCode: TaskFunction_t,
pub pcName: *const c_char,
pub usStackDepth: u16,
pub pvParameters: *mut c_void,
pub uxPriority: UBaseType_t,
pub puxStackBuffer: *mut StackType_t,
pub xRegions: [MemoryRegion_t; 1],
}
Fields
pvTaskCode: TaskFunction_t
pcName: *const c_char
usStackDepth: u16
pvParameters: *mut c_void
uxPriority: UBaseType_t
puxStackBuffer: *mut StackType_t
xRegions: [MemoryRegion_t; 1]
Trait Implementations
sourceimpl Clone for xTASK_PARAMETERS
impl Clone for xTASK_PARAMETERS
sourcefn clone(&self) -> xTASK_PARAMETERS
fn clone(&self) -> xTASK_PARAMETERS
Returns a copy of the value. Read more
1.0.0fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for xTASK_PARAMETERS
impl Debug for xTASK_PARAMETERS
sourceimpl Default for xTASK_PARAMETERS
impl Default for xTASK_PARAMETERS
impl Copy for xTASK_PARAMETERS
Auto Trait Implementations
impl RefUnwindSafe for xTASK_PARAMETERS
impl !Send for xTASK_PARAMETERS
impl !Sync for xTASK_PARAMETERS
impl Unpin for xTASK_PARAMETERS
impl UnwindSafe for xTASK_PARAMETERS
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstablefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
fn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
Uses borrowed data to replace owned data, usually by cloning. Read more