forked from gentoo-utils/gentoo-utils
impl atom parsing
This commit is contained in:
10
src/useflag/mod.rs
Normal file
10
src/useflag/mod.rs
Normal file
@@ -0,0 +1,10 @@
|
||||
pub mod parsers;
|
||||
|
||||
#[derive(Clone, Debug, PartialEq, Eq)]
|
||||
pub struct UseFlag(String);
|
||||
|
||||
impl UseFlag {
|
||||
pub fn get(&self) -> &str {
|
||||
self.0.as_str()
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user