pub struct AvlNode<T: Sized, Tag> {
pub left: *const T,
pub right: *const T,
pub parent: *const T,
pub balance: i8,
/* private fields */
}Available on crate feature
avl only.Fields§
§left: *const T§right: *const T§parent: *const T§balance: i8Implementations§
Trait Implementations§
impl<T, Tag> Send for AvlNode<T, Tag>
Auto Trait Implementations§
impl<T, Tag> Freeze for AvlNode<T, Tag>
impl<T, Tag> RefUnwindSafe for AvlNode<T, Tag>where
T: RefUnwindSafe,
impl<T, Tag> !Sync for AvlNode<T, Tag>
impl<T, Tag> Unpin for AvlNode<T, Tag>
impl<T, Tag> UnwindSafe for AvlNode<T, Tag>where
T: RefUnwindSafe,
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