Struct sync::mutex::Guard[src]
pub struct Guard<'a> {
// some fields omitted
}An RAII implementation of a "scoped lock" of a mutex. When this structure is dropped (falls out of scope), the lock will be unlocked.
pub struct Guard<'a> {
// some fields omitted
}An RAII implementation of a "scoped lock" of a mutex. When this structure is dropped (falls out of scope), the lock will be unlocked.
impl<'a> Drop for Guard<'a>fn drop(&mut self)
Prefix searches with a type followed by a colon (e.g.
fn:) to restrict the search to a given type.
Accepted types are: fn, mod,
struct (or str), enum,
trait, typedef (or
tdef).