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