pub struct Zip<Head, Tail>(pub Head, pub Tail);Tuple Fields§
§0: Head§1: TailTrait Implementations§
impl<Head: Copy, Tail: Copy> Copy for Zip<Head, Tail>
Auto Trait Implementations§
impl<Head, Tail> RefUnwindSafe for Zip<Head, Tail>where Head: RefUnwindSafe, Tail: RefUnwindSafe,
impl<Head, Tail> Send for Zip<Head, Tail>where Head: Send, Tail: Send,
impl<Head, Tail> Sync for Zip<Head, Tail>where Head: Sync, Tail: Sync,
impl<Head, Tail> Unpin for Zip<Head, Tail>where Head: Unpin, Tail: Unpin,
impl<Head, Tail> UnwindSafe for Zip<Head, Tail>where Head: UnwindSafe, Tail: 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