[][src]Struct minimult_cortex_m::MTSharedCh

pub struct MTSharedCh<'a, 's, M> { /* fields omitted */ }

Shared variable access channel

Methods

impl<'_, '_, M> MTSharedCh<'_, '_, M>[src]

pub fn look<F>(&self, f: F) where
    F: FnOnce(&M), 
[src]

Look a shared variable.

  • f: F - closure to refer the shared variable.
  • Blocks if the shared variable is touched by other channels.

pub fn touch<F>(&self, f: F) where
    F: FnOnce(&mut M), 
[src]

Touch a shared variable.

  • f: F - closure to mutably refer the shared variable.
  • Blocks if the shared variable is looked or touched by other channels.

Trait Implementations

impl<'_, '_, M: Send> Send for MTSharedCh<'_, '_, M>[src]

Auto Trait Implementations

impl<'a, 's, M> Unpin for MTSharedCh<'a, 's, M>

impl<'a, 's, M> !Sync for MTSharedCh<'a, 's, M>

Blanket Implementations

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

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, 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]

impl<T> Same<T> for T

type Output = T

Should always be Self