[][src]Struct broccoli::query::NotSortedQueryBuilder

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

Builder for a query on a NotSorted Dinotree.

Implementations

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

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

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

pub fn new(
    axis: A,
    vistr: VistrMut<'a, Node<'b, 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
[src]

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

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

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

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

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> Pointable for T

type Init = T

The type for initializers.

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.