konst::cmpTrait ConstCmpUnref
Source pub trait ConstCmpUnref: ConstCmp {
type This: ?Sized + ConstCmp;
}
Expand description
A helper trait of ConstCmp
, used for dereferencing.
What type Self
becomes after removing all layers of references.
Examples:
u32::This == u32
<&u32>::This == u32
<&&u32>::This == u32