//! This module includes errors used by this crate.
usestd::fmt;/// An error that arises when equal lengths are required but not found.
#[derive(Debug, Clone, Eq, PartialEq)]pubstructLengthMismatchError;implfmt::Display forLengthMismatchError{#[inline]fnfmt(&self, f:&mutfmt::Formatter)->fmt::Result{write!(f,"items of equal length are required")}}