| 29 | |
| 30 | #[derive(Clone, PartialEq, Eq, Debug, Arbitrary)] |
| 31 | struct NodeInner { |
| 32 | prefix: Nibbles, |
| 33 | kind: NodeKind, |
| 34 | } |
| 35 | |
| 36 | // Allow `large_enum_variant` because this enum is expected to only live inside a `Box`. |
| 37 | #[allow(clippy::large_enum_variant)] |
nothing calls this directly
no outgoing calls
no test coverage detected