pub struct BindingReadGuard<'a, T> { /* private fields */ }Expand description
A guard that can be used to read the value of a property.
This does not invoke the changed event when dropped.
Trait Implementations§
Source§impl<'a, T> Deref for BindingReadGuard<'a, T>
impl<'a, T> Deref for BindingReadGuard<'a, T>
Source§impl<'a, T> From<RwLockReadGuard<'a, PropertyData<T>>> for BindingReadGuard<'a, T>
impl<'a, T> From<RwLockReadGuard<'a, PropertyData<T>>> for BindingReadGuard<'a, T>
Source§fn from(inner: RwLockReadGuard<'a, PropertyData<T>>) -> Self
fn from(inner: RwLockReadGuard<'a, PropertyData<T>>) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl<'a, T> Freeze for BindingReadGuard<'a, T>
impl<'a, T> !RefUnwindSafe for BindingReadGuard<'a, T>
impl<'a, T> !Send for BindingReadGuard<'a, T>
impl<'a, T> !Sync for BindingReadGuard<'a, T>
impl<'a, T> Unpin for BindingReadGuard<'a, T>
impl<'a, T> !UnwindSafe for BindingReadGuard<'a, T>
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