File size: 411 Bytes
224e773
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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
    }
}