#[repr(C)]pub struct rbnode {
pub children: [*mut rbnode; 2],
}
Expand description
@brief Balanced red/black tree node structure
Fields§
§children: [*mut rbnode; 2]
@cond INTERNAL_HIDDEN
Trait Implementations§
Auto Trait Implementations§
impl Freeze for rbnode
impl RefUnwindSafe for rbnode
impl !Send for rbnode
impl !Sync for rbnode
impl Unpin for rbnode
impl UnwindSafe for rbnode
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