pub struct Branch<T, S: Storage<T>> {
pub item: T,
pub child: S::Node,
}Expand description
Internal node branch.
A branch is an item followed by child node identifier.
Fields§
§item: TItem.
child: S::NodeFollowing child node identifier.
Trait Implementations§
Auto Trait Implementations§
impl<T, S> Freeze for Branch<T, S>
impl<T, S> RefUnwindSafe for Branch<T, S>
impl<T, S> Send for Branch<T, S>
impl<T, S> Sync for Branch<T, S>
impl<T, S> Unpin for Branch<T, S>
impl<T, S> UnwindSafe for Branch<T, S>
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