Struct rstar::primitives::PointWithData[][src]

pub struct PointWithData<T, P> {
    pub data: T,
    // some fields omitted
}

A point with some associated data that can be inserted into an r-tree.

Often, adding metadata (like a database index) to a point is required before adding them into an r-tree. This struct removes some of the boilerplate required to do so.

Example

use rstar::{RTree, PointDistance};
use rstar::primitives::PointWithData;

type RestaurantLocation = PointWithData<&'static str, [f64; 2]>;

let mut restaurants = RTree::new();
restaurants.insert(RestaurantLocation::new("Pete's Pizza Place", [0.3, 0.2]));
restaurants.insert(RestaurantLocation::new("The Great Steak", [-0.8, 0.0]));
restaurants.insert(RestaurantLocation::new("Fishy Fortune", [0.2, -0.2]));

let my_location = [0.0, 0.0];

// Now find the closest restaurant!
let place = restaurants.nearest_neighbor(&my_location).unwrap();
println!("Let's go to {}", place.data);
println!("It's really close, only {} miles", place.distance_2(&my_location))

Fields

data: T

Any data associated with a point.

Implementations

impl<T, P> PointWithData<T, P>[src]

pub fn new(data: T, point: P) -> Self[src]

Creates a new PointWithData with the provided data.

pub fn position(&self) -> &P[src]

Returns this point’s position.

Trait Implementations

impl<T: Clone, P: Clone> Clone for PointWithData<T, P>[src]

impl<T: Copy, P: Copy> Copy for PointWithData<T, P>[src]

impl<T: Debug, P: Debug> Debug for PointWithData<T, P>[src]

impl<T: Default, P: Default> Default for PointWithData<T, P>[src]

impl<T: Eq, P: Eq> Eq for PointWithData<T, P>[src]

impl<T: Hash, P: Hash> Hash for PointWithData<T, P>[src]

impl<T: Ord, P: Ord> Ord for PointWithData<T, P>[src]

impl<T: PartialEq, P: PartialEq> PartialEq<PointWithData<T, P>> for PointWithData<T, P>[src]

impl<T: PartialOrd, P: PartialOrd> PartialOrd<PointWithData<T, P>> for PointWithData<T, P>[src]

impl<T, P> PointDistance for PointWithData<T, P> where
    P: Point
[src]

impl<T, P> RTreeObject for PointWithData<T, P> where
    P: Point
[src]

type Envelope = AABB<P>

The object’s envelope type. Usually, AABB will be the right choice. This type also defines the objects dimensionality. Read more

impl<T, P> StructuralEq for PointWithData<T, P>[src]

impl<T, P> StructuralPartialEq for PointWithData<T, P>[src]

Auto Trait Implementations

impl<T, P> RefUnwindSafe for PointWithData<T, P> where
    P: RefUnwindSafe,
    T: RefUnwindSafe

impl<T, P> Send for PointWithData<T, P> where
    P: Send,
    T: Send

impl<T, P> Sync for PointWithData<T, P> where
    P: Sync,
    T: Sync

impl<T, P> Unpin for PointWithData<T, P> where
    P: Unpin,
    T: Unpin

impl<T, P> UnwindSafe for PointWithData<T, P> where
    P: UnwindSafe,
    T: 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> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.