Struct freertos_rs::MutexGuard [] [src]

pub struct MutexGuard<'a, T: ?Sized + 'a> { /* fields omitted */ }

Holds the mutex until we are dropped

Trait Implementations

impl<'mutex, T: ?Sized> Deref for MutexGuard<'mutex, T>
[src]

The resulting type after dereferencing

The method called to dereference a value

impl<'mutex, T: ?Sized> DerefMut for MutexGuard<'mutex, T>
[src]

The method called to mutably dereference a value

impl<'a, T: ?Sized> Drop for MutexGuard<'a, T>
[src]

A method called when the value goes out of scope. Read more