SNAPKITTYWEST's picture
push from SNAPKITTYWEST/hyperkitty-constraint-dsl
224e773 verified
Raw
History Blame Contribute Delete
411 Bytes
pub struct InodeFlags {
pub base_dir: String,
}
impl InodeFlags {
pub fn new(base_dir: String) -> Self {
Self { base_dir }
}
pub fn set_flag(&self, _name: &str) -> hyperkitty_core::Result<()> {
Ok(())
}
pub fn clear_flag(&self, _name: &str) -> hyperkitty_core::Result<()> {
Ok(())
}
pub fn get_flag(&self, _name: &str) -> bool {
false
}
}