Trait freertos_rs::MutexInnerImpl [] [src]

pub trait MutexInnerImpl where
    Self: Sized + Drop
{ fn create() -> Result<Self, FreeRtosError>;
fn take<D: DurationTicks>(&self, max_wait: D) -> Result<(), FreeRtosError>;
fn give(&self); }

Required Methods

Implementors