(&self)
| 60 | |
| 61 | impl FlexValue { |
| 62 | pub fn is_absolute(&self) -> bool { |
| 63 | match self { |
| 64 | Self::Absolute(_) => true, |
| 65 | Self::Relative(_) => false, |
| 66 | Self::None => false, |
| 67 | } |
| 68 | } |
| 69 | |
| 70 | pub fn is_relative(&self) -> bool { |
| 71 | match self { |
nothing calls this directly
no outgoing calls
no test coverage detected