(&self)
| 225 | |
| 226 | impl GatewayEntry { |
| 227 | pub const fn source_label(&self) -> &'static str { |
| 228 | match self.source { |
| 229 | Some(source) => source.label(), |
| 230 | None => "unknown", |
| 231 | } |
| 232 | } |
| 233 | } |
| 234 | |
| 235 | // --------------------------------------------------------------------------- |