[][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<'c>(&'c self) -> MTSharedLook<'c, M>[src]

Makes an immutable access to a shared variable.

  • Returns a Deref-able wrapper of the shared variable.
  • Blocks if the shared variable is touched by other channels.

pub fn try_look<'c>(&'c self) -> Option<MTSharedLook<'c, M>>[src]

Tries to make an immutable access to a shared variable.

  • Returns a Deref-able wrapper of the shared variable in Option.
  • Gets None if the shared variable is touched by other channels.

pub fn touch<'c>(&'c self) -> MTSharedTouch<'c, M>[src]

Makes a mutable access to a shared variable.

  • Returns a DerefMut-able wrapper of the shared variable.
  • Blocks if the shared variable is looked or touched by other channels.

pub fn try_touch<'c>(&'c self) -> Option<MTSharedTouch<'c, M>>[src]

Tries to make a mutable access to a shared variable.

  • Returns a DerefMut-able wrapper of the shared variable in Option.
  • Gets None 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