[][src]Struct dinotree_alg::collectable::SingleCollisionList

pub struct SingleCollisionList<'a, T, D> { /* fields omitted */ }

Methods

impl<'a, T, D> SingleCollisionList<'a, T, D>[src]

pub fn for_every_mut<'b, A: Axis, N: Num>(
    &'b mut self,
    c: &'b mut CollectableDinoTree<'a, A, N, T>,
    func: impl FnMut(&mut T, &mut D)
)
[src]

pub fn get<'b, A: Axis, N: Num>(
    &self,
    c: &'b CollectableDinoTree<'a, A, N, T>
) -> &[(&T, D)]
[src]

impl<'a, T: Send + Sync, D: Send + Sync> SingleCollisionList<'a, T, D>[src]

pub fn for_every_mut_par<'b, A: Axis, N: Num>(
    &'b mut self,
    c: &'b mut CollectableDinoTree<'a, A, N, T>,
    func: impl Fn(&mut T, &mut D) + Send + Sync + Copy
)
[src]

Auto Trait Implementations

impl<'a, T, D> RefUnwindSafe for SingleCollisionList<'a, T, D> where
    D: RefUnwindSafe,
    T: RefUnwindSafe

impl<'a, T, D> Send for SingleCollisionList<'a, T, D> where
    D: Send,
    T: Send

impl<'a, T, D> Sync for SingleCollisionList<'a, T, D> where
    D: Sync,
    T: Sync

impl<'a, T, D> Unpin for SingleCollisionList<'a, T, D> where
    D: Unpin

impl<'a, T, D> !UnwindSafe for SingleCollisionList<'a, T, D>

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.