[][src]Struct collide_tree::CollideTree

pub struct CollideTree<L: Located + Debug> { /* fields omitted */ }

Implementations

impl<L: Located + Debug> CollideTree<L>[src]

pub fn new(bound: L::Box) -> Self[src]

pub fn add_item<F: FnMut(&L, &L)>(&mut self, item: L, f: &mut F)[src]

pub fn check_hits<F: FnMut(&L, &L)>(&self, item: &L, f: &mut F)[src]

pub fn grow_children(&mut self)[src]

pub fn for_each_collision<F: FnMut(&L, &L)>(&self, f: &mut F)[src]

Auto Trait Implementations

impl<L> RefUnwindSafe for CollideTree<L> where
    L: RefUnwindSafe,
    <L as Located>::Box: RefUnwindSafe

impl<L> Send for CollideTree<L> where
    L: Send,
    <L as Located>::Box: Send

impl<L> Sync for CollideTree<L> where
    L: Sync,
    <L as Located>::Box: Sync

impl<L> Unpin for CollideTree<L> where
    L: Unpin,
    <L as Located>::Box: Unpin

impl<L> UnwindSafe for CollideTree<L> where
    L: UnwindSafe,
    <L as Located>::Box: UnwindSafe

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,