use std::fmt;
#[derive(PartialEq, PartialOrd, Eq, Ord, Debug)]
pub enum Endian {
LITTLE,
BIG,
}
impl fmt::Display for Endian {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let endian_str = match self {
Self::BIG => 'E',
Self::LITTLE => 'e',
};
write!(f, "{}", endian_str)
}
}