Struct r3::kernel::task::TaskDefiner

source ·
pub struct TaskDefiner<System> { /* private fields */ }
Expand description

The definer (static builder) for TaskRef.

Implementations§

source§

impl<System> TaskDefiner<System>where System: KernelBase,

source

pub const fn start<C>(self, start: C) -> TaskDefiner<System>where C: IntoClosureConst,

[Required] Specify the task’s entry point.

source

pub const fn stack_size(self, stack_size: usize) -> TaskDefiner<System>

Specify the task’s stack size.

source

pub const fn priority(self, priority: usize) -> TaskDefiner<System>

[Required] Specify the task’s initial base priority. Tasks with lower priority values execute first. The value must be in range 0..num_task_priority_levels.

source

pub const fn active(self, active: bool) -> TaskDefiner<System>

Specify whether the task should be activated at system startup. Defaults to false (don’t activate).

source

pub const fn finish<C>(self, cfg: &mut Cfg<'_, C>) -> TaskRef<'static, System>where C: CfgTask<System = System>,

Complete the definition of a task, returning a reference to the task.

Trait Implementations§

source§

impl<System> ExecutableDefiner for TaskDefiner<System>where System: KernelBase,

source§

const fn start(self, start: Closure) -> TaskDefiner<System>

Use the specified function as the entry point of the executable object being defined.

Auto Trait Implementations§

§

impl<System> RefUnwindSafe for TaskDefiner<System>

§

impl<System> Send for TaskDefiner<System>

§

impl<System> Sync for TaskDefiner<System>

§

impl<System> Unpin for TaskDefiner<System>

§

impl<System> UnwindSafe for TaskDefiner<System>

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> ExecutableDefinerExt for Twhere T: ExecutableDefiner,

source§

const fn start_with_bind<Binder, Func>(self, binder: Binder, func: Func) -> Twhere Func: FnBind<Binder, Output = ()>,

Use the specified function with dependency as the entry point of the executable object being defined.
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

const: unstable · source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
const: unstable · source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.