(prefix: Nibbles, kind: NodeKind)
| 122 | } |
| 123 | |
| 124 | fn new(prefix: Nibbles, kind: NodeKind) -> Self { |
| 125 | Self(Box::new(NodeInner { prefix, kind })) |
| 126 | } |
| 127 | |
| 128 | /// Returns the prefix of the [Node]. |
| 129 | pub const fn prefix(&self) -> &Nibbles { |
nothing calls this directly
no outgoing calls
no test coverage detected