pub enum Link<'a, I, V> {
Link(I),
Value(&'a V),
}
Variants§
Auto Trait Implementations§
impl<'a, I, V> Freeze for Link<'a, I, V>where
I: Freeze,
impl<'a, I, V> RefUnwindSafe for Link<'a, I, V>where
I: RefUnwindSafe,
V: RefUnwindSafe,
impl<'a, I, V> Send for Link<'a, I, V>
impl<'a, I, V> Sync for Link<'a, I, V>
impl<'a, I, V> Unpin for Link<'a, I, V>where
I: Unpin,
impl<'a, I, V> UnwindSafe for Link<'a, I, V>where
I: UnwindSafe,
V: RefUnwindSafe,
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