Name of the container according to its kind and whether it was upgraded
(&self)
| 144 | |
| 145 | /// Name of the container according to its kind and whether it was upgraded |
| 146 | pub fn name(&self) -> &ContainerName { |
| 147 | if self.upgraded { |
| 148 | &self.name_upgraded |
| 149 | } else { |
| 150 | &self.name |
| 151 | } |
| 152 | } |
| 153 | |
| 154 | /// Build a private IP address from the given subnet, container, and node indexes (for local mode) |
| 155 | /// |
no outgoing calls