[][src]Struct run_down::RundownGuard

pub struct RundownGuard<'r> { /* fields omitted */ }

An RAII implementation of a "scoped lock" pattern, but specialized to the needs of run-down protection. When this structure is dropped (falls out of scope), the rundown protection reference that was previously acquired is released.

This structure is created by the try_acquire method on RundownRef.

This type attempts to follow the RAII guidance here: https://github.com/rust-unofficial/patterns/blob/master/patterns/RAII.md

Methods

impl<'r> RundownGuard<'r>[src]

pub const fn new(owned_run_down_ref: &'r RundownRef) -> RundownGuard<'r>[src]

Creates a new RundownGuard which owns an instance of run-down protection on the RundownRef provided.

Arguments

  • owned_run_down_ref - The run-down reference to release when the guard goes out of scope.

Trait Implementations

impl<'r> Drop for RundownGuard<'r>[src]

fn drop(&mut self)[src]

Releases the previously acquired instance of run-down protection.

Auto Trait Implementations

impl<'r> Send for RundownGuard<'r>

impl<'r> Sync for RundownGuard<'r>

impl<'r> Unpin for RundownGuard<'r>

impl<'r> !UnwindSafe for RundownGuard<'r>

impl<'r> !RefUnwindSafe for RundownGuard<'r>

Blanket Implementations

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 = !

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.

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]