pub struct Union<A> {
pub vals: Vec<A>,
pub poss: Vec<Vec<usize>>,
}Fields§
§vals: Vec<A>§poss: Vec<Vec<usize>>Implementations§
Auto Trait Implementations§
impl<A> Freeze for Union<A>
impl<A> RefUnwindSafe for Union<A>where
A: RefUnwindSafe,
impl<A> Send for Union<A>where
A: Send,
impl<A> Sync for Union<A>where
A: Sync,
impl<A> Unpin for Union<A>where
A: Unpin,
impl<A> UnwindSafe for Union<A>where
A: 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