[][src]Struct dinotree_alg::analyze::NotSortedQueryBuilder

pub struct NotSortedQueryBuilder<'a, 'b: 'a, A: Axis, T: Aabb> { /* fields omitted */ }

Builder for a query on a NotSorted Dinotree.

Methods

impl<'a, 'b: 'a, A: Axis, T: Aabb + Send + Sync> NotSortedQueryBuilder<'a, 'b, A, T>[src]

pub fn query_par(self, func: impl Fn(PMut<T>, PMut<T>) + Copy + Send + Sync)[src]

impl<'a, 'b: 'a, A: Axis, T: Aabb> NotSortedQueryBuilder<'a, 'b, A, T>[src]

pub fn new(
    tree: &'a mut NotSorted<'b, A, T>
) -> NotSortedQueryBuilder<'a, 'b, A, T>
[src]

pub fn query_with_splitter_seq(
    self,
    func: impl FnMut(PMut<T>, PMut<T>),
    splitter: &mut impl Splitter
)
[src]

pub fn query_seq(self, func: impl FnMut(PMut<T>, PMut<T>))[src]

Auto Trait Implementations

impl<'a, 'b, A, T> RefUnwindSafe for NotSortedQueryBuilder<'a, 'b, A, T> where
    A: RefUnwindSafe,
    T: RefUnwindSafe,
    <T as Aabb>::Num: RefUnwindSafe

impl<'a, 'b, A, T> Send for NotSortedQueryBuilder<'a, 'b, A, T> where
    T: Send,
    <T as Aabb>::Num: Send

impl<'a, 'b, A, T> Sync for NotSortedQueryBuilder<'a, 'b, A, T> where
    T: Sync,
    <T as Aabb>::Num: Sync

impl<'a, 'b, A, T> Unpin for NotSortedQueryBuilder<'a, 'b, A, T> where
    'b: 'a, 

impl<'a, 'b, A, T> !UnwindSafe for NotSortedQueryBuilder<'a, 'b, A, T>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.