Check if this is a folder edge.
(&self)
| 141 | |
| 142 | /// Check if this is a folder edge. |
| 143 | pub fn is_folder(&self) -> bool { |
| 144 | self.flag.contains(EdgeFlags::FOLDER) |
| 145 | } |
| 146 | |
| 147 | /// Check if this is a parent edge. |
| 148 | pub fn is_parent(&self) -> bool { |
no test coverage detected