pub struct TreeBranch<'a, Real> {
pub vtx2xy: &'a [Real],
pub nodes: &'a Vec<usize>,
pub idx_node: usize,
pub min: [Real; 2],
pub max: [Real; 2],
pub i_depth: usize,
}Fields§
§vtx2xy: &'a [Real]§nodes: &'a Vec<usize>§idx_node: usize§min: [Real; 2]§max: [Real; 2]§i_depth: usizeAuto Trait Implementations§
impl<'a, Real> Freeze for TreeBranch<'a, Real>where
Real: Freeze,
impl<'a, Real> RefUnwindSafe for TreeBranch<'a, Real>where
Real: RefUnwindSafe,
impl<'a, Real> Send for TreeBranch<'a, Real>
impl<'a, Real> Sync for TreeBranch<'a, Real>where
Real: Sync,
impl<'a, Real> Unpin for TreeBranch<'a, Real>where
Real: Unpin,
impl<'a, Real> UnsafeUnpin for TreeBranch<'a, Real>where
Real: UnsafeUnpin,
impl<'a, Real> UnwindSafe for TreeBranch<'a, Real>where
Real: UnwindSafe + 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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more