(self)
| 73 | |
| 74 | impl LogSourceFilter { |
| 75 | pub fn next(self) -> Self { |
| 76 | match self { |
| 77 | Self::All => Self::Gateway, |
| 78 | Self::Gateway => Self::Sandbox, |
| 79 | Self::Sandbox => Self::All, |
| 80 | } |
| 81 | } |
| 82 | |
| 83 | pub fn label(self) -> &'static str { |
| 84 | match self { |
no outgoing calls