Struct region::LockGuard [] [src]

#[must_use]
pub struct LockGuard { /* fields omitted */ }

An RAII implementation of a "scoped lock". When this structure is dropped (falls out of scope), the virtual lock will be unlocked.

Methods

impl LockGuard
[src]

[src]

Releases the guards ownership of the virtual lock.

Trait Implementations

impl Drop for LockGuard
[src]

[src]

Executes the destructor for this type. Read more