pub struct Node<T, C = i32> {
pub item: Option<T>,
pub size: KdBox<C>,
pub lo_min_bound: C,
pub hi_max_bound: C,
pub other_bound: C,
pub sons: [Option<usize>; 2],
}Fields§
§item: Option<T>§size: KdBox<C>§lo_min_bound: C§hi_max_bound: C§other_bound: C§sons: [Option<usize>; 2]Auto Trait Implementations§
impl<T, C> Freeze for Node<T, C>
impl<T, C> RefUnwindSafe for Node<T, C>where
C: RefUnwindSafe,
T: RefUnwindSafe,
impl<T, C> Send for Node<T, C>
impl<T, C> Sync for Node<T, C>
impl<T, C> Unpin for Node<T, C>
impl<T, C> UnsafeUnpin for Node<T, C>where
C: UnsafeUnpin,
T: UnsafeUnpin,
impl<T, C> UnwindSafe for Node<T, C>where
C: UnwindSafe,
T: 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