must impl flag checking as trusted due to bitwise ops not being supported by prusti
(&self)
| 719 | impl FstFlags { |
| 720 | // must impl flag checking as trusted due to bitwise ops not being supported by prusti |
| 721 | pub fn atim(&self) -> bool { |
| 722 | nth_bit_set(self.0, 0) |
| 723 | } |
| 724 | |
| 725 | pub fn atim_now(&self) -> bool { |
| 726 | nth_bit_set(self.0, 1) |
no test coverage detected