pub struct Queue<Q>(pub Q);Expand description
Heterogenous queue Supports pushing, splitting to init and last Mapping and folding
Tuple Fields§
§0: QImplementations§
Trait Implementations§
Source§impl<Q: Ord> Ord for Queue<Q>
impl<Q: Ord> Ord for Queue<Q>
Source§impl<Q: PartialOrd> PartialOrd for Queue<Q>
impl<Q: PartialOrd> PartialOrd for Queue<Q>
Source§impl<LH, LT, RH, RT, ZH> Zip<Queue<(RH, RT)>> for Queue<(LH, LT)>where
LH: Zip<RH, Zipped = ZH>,
impl<LH, LT, RH, RT, ZH> Zip<Queue<(RH, RT)>> for Queue<(LH, LT)>where
LH: Zip<RH, Zipped = ZH>,
impl<Q: Copy> Copy for Queue<Q>
impl<Q: Eq> Eq for Queue<Q>
impl<Q> StructuralPartialEq for Queue<Q>
Auto Trait Implementations§
impl<Q> Freeze for Queue<Q>where
Q: Freeze,
impl<Q> RefUnwindSafe for Queue<Q>where
Q: RefUnwindSafe,
impl<Q> Send for Queue<Q>where
Q: Send,
impl<Q> Sync for Queue<Q>where
Q: Sync,
impl<Q> Unpin for Queue<Q>where
Q: Unpin,
impl<Q> UnwindSafe for Queue<Q>where
Q: 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