//! [`core::cmp::AssertParamIsEq`] reimplementation.
use::core;usecore::marker::PhantomData;usecore::prelude::v1::*;/// Same as [`core::cmp::AssertParamIsEq`], but reimplemented on our side, because the original is
/// not a part of stable API and could be changed any time.
#[allow(missing_debug_implementations)]pubstructAssertParamIsEq<T:Eq+?Sized> {_field:PhantomData<T>,
}