Struct ZipEq

#[must_use = "iterator adaptors are lazy and do nothing unless consumed"]
pub struct ZipEq<I, J> { /* private fields */ }

An iterator which iterates two other iterators simultaneously and panic if they have different lengths.

See .zip_eq() for more information.

Trait Implementations

impl<I, J> ExactSizeIterator for ZipEq<I, J> where I: ExactSizeIterator, J: ExactSizeIterator,

impl<I, J> Iterator for ZipEq<I, J> where I: Iterator, J: Iterator,

type Item = (<I as Iterator>::Item, <J as Iterator>::Item);
fn next(&mut self) -> Option<Self::Item>
fn size_hint(&self) -> (usize, Option<usize>)

impl<I: Clone, J: Clone> Clone for ZipEq<I, J>

fn clone(&self) -> ZipEq<I, J>

impl<I: Debug, J: Debug> Debug for ZipEq<I, J>

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Auto Trait Implementations

impl<I, J> Freeze for ZipEq<I, J> where I: Freeze, J: Freeze,

impl<I, J> RefUnwindSafe for ZipEq<I, J> where I: RefUnwindSafe, J: RefUnwindSafe,

impl<I, J> Send for ZipEq<I, J> where I: Send, J: Send,

impl<I, J> Sync for ZipEq<I, J> where I: Sync, J: Sync,

impl<I, J> Unpin for ZipEq<I, J> where I: Unpin, J: Unpin,

impl<I, J> UnsafeUnpin for ZipEq<I, J> where I: UnsafeUnpin, J: UnsafeUnpin,

impl<I, J> UnwindSafe for ZipEq<I, J> where I: UnwindSafe, J: UnwindSafe,

Blanket Implementations

impl<I> IntoIterator for ZipEq<I, J> where I: Iterator,

type Item = <I as Iterator>::Item;
type IntoIter = I;
fn into_iter(self) -> I

impl<IT, A, FromA, B, FromB> MultiUnzip<(FromA, FromB)> for ZipEq<I, J> where IT: Iterator<Item = (A, B)>, FromA: Default + Extend<A>, FromB: Default + Extend<B>,

fn multiunzip(self) -> (FromA, FromB)

impl<T> Any for ZipEq<I, J> where T: 'static + ?Sized,

fn type_id(&self) -> TypeId

impl<T> Borrow<T> for ZipEq<I, J> where T: ?Sized,

fn borrow(&self) -> &T

impl<T> BorrowMut<T> for ZipEq<I, J> where T: ?Sized,

fn borrow_mut(&mut self) -> &mut T

impl<T> CloneToUninit for ZipEq<I, J> where T: Clone,

unsafe fn clone_to_uninit(&self, dest: *mut u8)

impl<T> From<T> for ZipEq<I, J>

fn from(t: T) -> T

Returns the argument unchanged.

impl<T> IntoEither for ZipEq<I, J>

impl<T> Itertools for ZipEq<I, J> where T: Iterator + ?Sized,

impl<T> ToOwned for ZipEq<I, J> where T: Clone,

type Owned = T;
fn to_owned(&self) -> T
fn clone_into(&self, target: &mut T)

impl<T, U> Into<U> for ZipEq<I, J> where U: From<T>,

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of [From]<T> for U chooses to do.

impl<T, U> TryFrom<U> for ZipEq<I, J> where U: Into<T>,

type Error = never;
fn try_from(value: U) -> Result<T, never>

impl<T, U> TryInto<U> for ZipEq<I, J> where U: TryFrom<T>,

type Error = <U as TryFrom<T>>::Error;
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>