[][src]Struct quadtree_cd::Tree

pub struct Tree<T> {
    pub width: f32,
    pub height: f32,
    // some fields omitted
}

Fields

width: f32height: f32

Methods

impl<T> Tree<T> where
    T: Clone
[src]

pub fn new(width: f32, height: f32) -> Tree<T>[src]

pub fn insert_checked(
    &mut self,
    item: T,
    bbox: &BoundingBox<f32>,
    check: Option<&dyn Fn(&T, &T) -> bool>
) -> bool
[src]

pub fn insert_unless_intersecting(
    &mut self,
    item: T,
    bbox: &BoundingBox<f32>
) -> bool where
    T: Intersection
[src]

pub fn insert(&mut self, item: T, bbox: &BoundingBox<f32>)[src]

Auto Trait Implementations

impl<T> Sync for Tree<T> where
    T: Sync

impl<T> Send for Tree<T> where
    T: Send

impl<T> Unpin for Tree<T> where
    T: Unpin

impl<T> RefUnwindSafe for Tree<T> where
    T: RefUnwindSafe

impl<T> UnwindSafe for Tree<T> where
    T: UnwindSafe

Blanket Implementations

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<T> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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