//! A library to obtain the representation of an enum's discriminant.
/// A trait to obtain the representation of an enum's discriminant.
pubtraitReprDiscriminant{/// The representation type of the discriminant.
typeRepr;/// Returns the representation of the enum's discriminant.
fnrepr_discriminant(&self)->Self::Repr;}#[cfg(feature ="derive")]pubuserepr_discriminant_derive::ReprDiscriminant;