pub enum UfCell<U, M, P>{
Root((U::Info, M::Data)),
Child((usize, P::T)),
}
Variants§
Trait Implementations§
Auto Trait Implementations§
impl<U, M, P> Freeze for UfCell<U, M, P>where
<U as UnionStrategy>::Info: Freeze,
<M as UfMergeSpec>::Data: Freeze,
<P as Magma>::T: Freeze,
impl<U, M, P> RefUnwindSafe for UfCell<U, M, P>where
<U as UnionStrategy>::Info: RefUnwindSafe,
<M as UfMergeSpec>::Data: RefUnwindSafe,
<P as Magma>::T: RefUnwindSafe,
impl<U, M, P> Send for UfCell<U, M, P>
impl<U, M, P> Sync for UfCell<U, M, P>
impl<U, M, P> Unpin for UfCell<U, M, P>
impl<U, M, P> UnwindSafe for UfCell<U, M, P>where
<U as UnionStrategy>::Info: UnwindSafe,
<M as UfMergeSpec>::Data: UnwindSafe,
<P as Magma>::T: UnwindSafe,
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