//! Marker types.
usestd::marker::PhantomData;/// Common trait for ordering behavior marker types.
pubtraitEqKind{}implEqKind forByAddress{}implEqKind forByContent{}/// Zero-sized type that marks ordering by pointer addresss.
pubstructByAddress{_phandom:PhantomData<()>,
}/// Zero-sized type that marks ordering by content.
pubstructByContent{_phandom:PhantomData<()>,
}