std::sync::RwLockReadGuard

Struct std::sync::RwLockReadGuard

#[must_use]
pub struct RwLockReadGuard<'a, T: ?Sized + 'a> { /* fields omitted */ }

RAII structure used to release the shared read access of a lock when dropped.

This structure is created by the read and try_read methods on RwLock.

Trait Implementations

impl<'a, T: ?Sized> !Send for RwLockReadGuard<'a, T> [src]

impl<'a, T: Debug> Debug for RwLockReadGuard<'a, T>
1.16.0
[src]

Formats the value using the given formatter.

impl<'rwlock, T: ?Sized> Deref for RwLockReadGuard<'rwlock, T> [src]

The resulting type after dereferencing

The method called to dereference a value

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

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

© 2010 The Rust Project Developers
Licensed under the Apache License, Version 2.0 or the MIT license, at your option.
https://doc.rust-lang.org/std/sync/struct.RwLockReadGuard.html

在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号

意见反馈
返回顶部