pub struct MutPath<'r, TP: TreeProperties> { /* private fields */ }Expand description
Iterate over all nodes that are a prefix of target key
Implementations§
Trait Implementations§
Source§impl<'r, TP: TreeProperties> IntoIterator for MutPath<'r, TP>
impl<'r, TP: TreeProperties> IntoIterator for MutPath<'r, TP>
Source§type IntoIter = IterMutPath<'r, TP>
type IntoIter = IterMutPath<'r, TP>
Which kind of iterator are we turning this into?
Source§type Item = (&'r <TP as TreeProperties>::Key, &'r mut <TP as TreeProperties>::Value, Option<&'r mut <TP as TreeProperties>::LeafValue>)
type Item = (&'r <TP as TreeProperties>::Key, &'r mut <TP as TreeProperties>::Value, Option<&'r mut <TP as TreeProperties>::LeafValue>)
The type of the elements being iterated over.