pub enum PropertyContext<'b, V> {
Get(PropertyContextGet<'b>),
Set(PropertyContextSet<'b, V>),
}
Variants§
Get(PropertyContextGet<'b>)
Set(PropertyContextSet<'b, V>)
Implementations§
Auto Trait Implementations§
impl<'b, V> Freeze for PropertyContext<'b, V>where
V: Freeze,
impl<'b, V> !RefUnwindSafe for PropertyContext<'b, V>
impl<'b, V> !Send for PropertyContext<'b, V>
impl<'b, V> !Sync for PropertyContext<'b, V>
impl<'b, V> Unpin for PropertyContext<'b, V>where
V: Unpin,
impl<'b, V> !UnwindSafe for PropertyContext<'b, V>
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