pub struct BTreeNode<K: Copy + Ord + Default + 'static, V: Copy + Default + 'static> {
pub count: u16,
pub is_leaf: u8,
pub keys: [K; 15],
pub children: [u32; 16],
pub values: [V; 15],
/* private fields */
}Fields§
§count: u16§is_leaf: u8§keys: [K; 15]§children: [u32; 16]§values: [V; 15]Auto Trait Implementations§
impl<K, V> Freeze for BTreeNode<K, V>
impl<K, V> RefUnwindSafe for BTreeNode<K, V>
impl<K, V> Send for BTreeNode<K, V>
impl<K, V> Sync for BTreeNode<K, V>
impl<K, V> Unpin for BTreeNode<K, V>
impl<K, V> UnsafeUnpin for BTreeNode<K, V>
impl<K, V> UnwindSafe for BTreeNode<K, V>
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