pub struct Branch<K, V> {
pub item: Item<K, V>,
pub child: usize,
}Expand description
Internal node branch.
A branch is an item followed by child node identifier.
Fields§
§item: Item<K, V>Item.
child: usizeFollowing child node identifier.
Trait Implementations§
Auto Trait Implementations§
impl<K, V> Freeze for Branch<K, V>
impl<K, V> RefUnwindSafe for Branch<K, V>where
K: RefUnwindSafe,
V: RefUnwindSafe,
impl<K, V> Send for Branch<K, V>
impl<K, V> Sync for Branch<K, V>
impl<K, V> Unpin for Branch<K, V>
impl<K, V> UnwindSafe for Branch<K, V>where
K: UnwindSafe,
V: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more