pub struct Ref<'a, T> { /* private fields */ }Expand description
Returns a reference to the inner value.
Outstanding borrows hold a read lock on the inner value. This means that long lived borrows could cause the produce half to block. It is recommended to keep the borrow as short lived as possible.
Trait Implementations§
Auto Trait Implementations§
impl<'a, T> !Send for Ref<'a, T>
impl<'a, T> Freeze for Ref<'a, T>where
RwLockReadGuard<'a, T>: Freeze,
impl<'a, T> RefUnwindSafe for Ref<'a, T>where
RwLockReadGuard<'a, T>: RefUnwindSafe,
impl<'a, T> Sync for Ref<'a, T>where
RwLockReadGuard<'a, T>: Sync,
impl<'a, T> Unpin for Ref<'a, T>where
RwLockReadGuard<'a, T>: Unpin,
impl<'a, T> UnsafeUnpin for Ref<'a, T>where
RwLockReadGuard<'a, T>: UnsafeUnpin,
impl<'a, T> UnwindSafe for Ref<'a, T>where
RwLockReadGuard<'a, T>: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more