(&self)
| 68 | } |
| 69 | |
| 70 | pub fn is_relative(&self) -> bool { |
| 71 | match self { |
| 72 | Self::Absolute(_) => false, |
| 73 | Self::Relative(_) => true, |
| 74 | Self::None => false, |
| 75 | } |
| 76 | } |
| 77 | |
| 78 | pub fn is_none(&self) -> bool { |
| 79 | match self { |
nothing calls this directly
no outgoing calls
no test coverage detected