Returns a reference to the inner [`NameData`].
(&self)
| 145 | impl Name { |
| 146 | /// Returns a reference to the inner [`NameData`]. |
| 147 | pub fn as_data(&self) -> &NameData { |
| 148 | &self.0 |
| 149 | } |
| 150 | |
| 151 | /// Returns the precomputed Blake3 hash of this name. |
| 152 | pub fn get_hash(&self) -> &Hash { |
no outgoing calls