pub struct LLANode<T: Clone> {
pub axis: usize,
pub split: f64,
pub left: Box<NodeOrData<T>>,
pub right: Box<NodeOrData<T>>,
}Fields§
§axis: usize§split: f64§left: Box<NodeOrData<T>>§right: Box<NodeOrData<T>>Trait Implementations§
Auto Trait Implementations§
impl<T> Freeze for LLANode<T>
impl<T> RefUnwindSafe for LLANode<T>where
T: RefUnwindSafe,
impl<T> Send for LLANode<T>where
T: Send,
impl<T> Sync for LLANode<T>where
T: Sync,
impl<T> Unpin for LLANode<T>
impl<T> UnsafeUnpin for LLANode<T>
impl<T> UnwindSafe for LLANode<T>where
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