#[repr(C)]pub struct avl_tree {
pub list_head: list_head,
pub root: *mut avl_node,
pub count: c_uint,
pub allow_dups: bool,
pub comp: avl_tree_comp,
pub cmp_ptr: *mut c_void,
}Fields§
§list_head: list_head§root: *mut avl_node§count: c_uint§allow_dups: bool§comp: avl_tree_comp§cmp_ptr: *mut c_voidTrait Implementations§
impl Copy for avl_tree
Auto Trait Implementations§
impl Freeze for avl_tree
impl RefUnwindSafe for avl_tree
impl !Send for avl_tree
impl !Sync for avl_tree
impl Unpin for avl_tree
impl UnsafeUnpin for avl_tree
impl UnwindSafe for 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