#[repr(C)]pub struct ddsrt_avl_tree {
pub root: *mut ddsrt_avl_node_t,
}Expand description
@brief The avl tree.
The tree only knows the root @ref ddsrt_avl_node. The settings for the tree are stored separately in the @ref ddsrt_avl_treedef. As a result, most tree operations require you to provide both the treedef and the tree.
Fields§
§root: *mut ddsrt_avl_node_t< is the root node of the tree
Trait Implementations§
Source§impl Clone for ddsrt_avl_tree
impl Clone for ddsrt_avl_tree
Source§fn clone(&self) -> ddsrt_avl_tree
fn clone(&self) -> ddsrt_avl_tree
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 moreimpl Copy for ddsrt_avl_tree
Source§impl Debug for ddsrt_avl_tree
impl Debug for ddsrt_avl_tree
Auto Trait Implementations§
impl !Send for ddsrt_avl_tree
impl !Sync for ddsrt_avl_tree
impl Freeze for ddsrt_avl_tree
impl RefUnwindSafe for ddsrt_avl_tree
impl Unpin for ddsrt_avl_tree
impl UnsafeUnpin for ddsrt_avl_tree
impl UnwindSafe for ddsrt_avl_tree
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