forked from gentoo-utils/gentoo-utils
impl fmt::Display for Atom
This commit is contained in:
@@ -1,3 +1,5 @@
|
||||
use core::fmt;
|
||||
|
||||
pub mod parsers;
|
||||
|
||||
#[derive(Clone, Debug, PartialEq, Eq)]
|
||||
@@ -8,3 +10,9 @@ impl UseFlag {
|
||||
self.0.as_str()
|
||||
}
|
||||
}
|
||||
|
||||
impl fmt::Display for UseFlag {
|
||||
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
||||
write!(f, "{}", self.0)
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user