pub struct B2treeNode<UserDataType> { /* private fields */ }Expand description
A node in the dynamic tree. The client does not interact with this directly.
Implementations§
Trait Implementations§
Source§impl<UserDataType: Clone> Clone for B2treeNode<UserDataType>
impl<UserDataType: Clone> Clone for B2treeNode<UserDataType>
Source§fn clone(&self) -> B2treeNode<UserDataType>
fn clone(&self) -> B2treeNode<UserDataType>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<UserDataType: Debug> Debug for B2treeNode<UserDataType>
impl<UserDataType: Debug> Debug for B2treeNode<UserDataType>
Source§impl<UserDataType: Default> Default for B2treeNode<UserDataType>
impl<UserDataType: Default> Default for B2treeNode<UserDataType>
Source§fn default() -> B2treeNode<UserDataType>
fn default() -> B2treeNode<UserDataType>
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl<UserDataType> Freeze for B2treeNode<UserDataType>where
UserDataType: Freeze,
impl<UserDataType> RefUnwindSafe for B2treeNode<UserDataType>where
UserDataType: RefUnwindSafe,
impl<UserDataType> Send for B2treeNode<UserDataType>where
UserDataType: Send,
impl<UserDataType> Sync for B2treeNode<UserDataType>where
UserDataType: Sync,
impl<UserDataType> Unpin for B2treeNode<UserDataType>where
UserDataType: Unpin,
impl<UserDataType> UnsafeUnpin for B2treeNode<UserDataType>where
UserDataType: UnsafeUnpin,
impl<UserDataType> UnwindSafe for B2treeNode<UserDataType>where
UserDataType: 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