[][src]Struct irq::LockGuard

pub struct LockGuard<'a, T, P: LockPriority> { /* fields omitted */ }

A guard keeping a lock acquired until it is dropped.

Trait Implementations

impl<'a, T: Debug, P: LockPriority> Debug for LockGuard<'a, T, P>[src]

impl<'a, T, P: LockPriority> Deref for LockGuard<'a, T, P>[src]

type Target = T

The resulting type after dereferencing.

impl<'a, T, P: LockPriority> DerefMut for LockGuard<'a, T, P>[src]

impl<'a, T: Display, P: LockPriority> Display for LockGuard<'a, T, P>[src]

impl<'a, T, P: LockPriority> Drop for LockGuard<'a, T, P>[src]

Auto Trait Implementations

impl<'a, T, P> !Send for LockGuard<'a, T, P>

impl<'a, T, P> !Sync for LockGuard<'a, T, P>

impl<'a, T, P> Unpin for LockGuard<'a, T, P> where
    P: Unpin

Blanket Implementations

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

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

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

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

impl<T, U> Into<U> for T where
    U: From<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> 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.