[][src]Struct freertos_rs::patterns::compute_task::ComputeTask

pub struct ComputeTask<R> { /* fields omitted */ }

A task that can terminate and return its return value. Implemented using an atomically shared mutex.

Sample usage:

use freertos_rs::patterns::compute_task::*;
let task = Task::new().compute(|| {
	CurrentTask::delay(Duration::ms(100));
	42
}).unwrap();

let result = task.into_result(Duration::ms(1000)).unwrap();

Methods

impl<R: Debug> ComputeTask<R>[src]

pub fn get_task(&self) -> &Task[src]

Get the handle of the task that computes the result.

pub fn wait_for_result<D: DurationTicks>(
    &mut self,
    max_wait: D
) -> Result<(), FreeRtosError>
[src]

Wait until the task computes its result. Otherwise, returns a timeout.

pub fn into_result<D: DurationTicks>(
    self,
    max_wait: D
) -> Result<R, FreeRtosError>
[src]

Consume the task and unwrap the computed return value.

Auto Trait Implementations

impl<R> Send for ComputeTask<R> where
    R: Send + Sync

impl<R> !Sync for ComputeTask<R>

Blanket Implementations

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]