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

pub struct NotSortedQueryBuilder<'a, A: Axis, N: Node> { /* fields omitted */ }

Builder for a query on a NotSorted Dinotree.

Methods

impl<'a, A: Axis, N: Node + Send + Sync> NotSortedQueryBuilder<'a, A, N> where
    N::T: Send + Sync
[src]

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

impl<'a, A: Axis, N: Node> NotSortedQueryBuilder<'a, A, N>[src]

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

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

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

Auto Trait Implementations

impl<'a, A, N> RefUnwindSafe for NotSortedQueryBuilder<'a, A, N> where
    A: RefUnwindSafe,
    N: RefUnwindSafe

impl<'a, A, N> Send for NotSortedQueryBuilder<'a, A, N> where
    N: Send

impl<'a, A, N> Sync for NotSortedQueryBuilder<'a, A, N> where
    N: Sync

impl<'a, A, N> Unpin for NotSortedQueryBuilder<'a, A, N>

impl<'a, A, N> !UnwindSafe for NotSortedQueryBuilder<'a, A, N>

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.