pub struct RefsSingle<V>(/* private fields */)
where
V: Variant;
Expand description
A single node reference.
Implementations§
Trait Implementations§
Source§impl<V: Variant> Clone for RefsSingle<V>
impl<V: Variant> Clone for RefsSingle<V>
Source§impl<V: Variant> Debug for RefsSingle<V>
impl<V: Variant> Debug for RefsSingle<V>
Source§impl<V: Variant> Refs for RefsSingle<V>
impl<V: Variant> Refs for RefsSingle<V>
Auto Trait Implementations§
impl<V> Freeze for RefsSingle<V>
impl<V> RefUnwindSafe for RefsSingle<V>where
<V as Variant>::Prev: RefUnwindSafe,
<V as Variant>::Next: RefUnwindSafe,
<V as Variant>::Item: RefUnwindSafe,
impl<V> Send for RefsSingle<V>
impl<V> Sync for RefsSingle<V>
impl<V> Unpin for RefsSingle<V>
impl<V> UnwindSafe for RefsSingle<V>where
<V as Variant>::Prev: RefUnwindSafe,
<V as Variant>::Next: RefUnwindSafe,
<V as Variant>::Item: 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