(val: Option<T>)
| 285 | |
| 286 | impl<T> Node<T> { |
| 287 | fn new(val: Option<T>) -> NonNull<Self> { |
| 288 | let v = Box::new(Self { |
| 289 | val, |
| 290 | next: vec![None; R], |
| 291 | }); |
| 292 | Box::leak(v).into() |
| 293 | } |
| 294 | } |
| 295 | |
| 296 | impl<T> Drop for TrieST<T> { |
nothing calls this directly
no outgoing calls
no test coverage detected