Returns the full name of the entry, which is the namespace and the name separated by a `/`.
(&self)
| 200 | |
| 201 | /// Returns the full name of the entry, which is the namespace and the name separated by a `/`. |
| 202 | pub fn fullname(&self) -> String { |
| 203 | format!("{}{}/{}", Self::NAMESPACE_PREFIX, self.namespace, self.name) |
| 204 | } |
| 205 | |
| 206 | pub fn to_kind(&self) -> RegistryValueKind { |
| 207 | match &self.value { |
no outgoing calls