Struct tokio_sync::watch::Ref [−][src]
pub struct Ref<'a, T: 'a> { /* fields omitted */ }
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> RefUnwindSafe for Ref<'a, T>
impl<'a, T> UnwindSafe for Ref<'a, T>