pub trait BigEndianUInt: Copy + PartialEq + Eq + Ord + PartialOrd + Debug + Send + Sync + 'static + From<Self::Native> {
    type Native: Into<Self>;
}

Required Associated Types§

type Native: Into<Self>

Implementors§