pub struct PointWithData<T, P> {
    pub data: T,
    /* private fields */
}
Expand description

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

Note: PointWithData has been deprecated in favour of GeomWithData

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§

source§

impl<T, P> PointWithData<T, P>

source

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

👎Deprecated: PointWithData is deprecated. Please switch to GeomWithData

Creates a new PointWithData with the provided data.

source

pub fn position(&self) -> &P

Returns this point’s position.

Trait Implementations§

source§

impl<T: Clone, P: Clone> Clone for PointWithData<T, P>

source§

fn clone(&self) -> PointWithData<T, P>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<T: Debug, P: Debug> Debug for PointWithData<T, P>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<T: Default, P: Default> Default for PointWithData<T, P>

source§

fn default() -> PointWithData<T, P>

Returns the “default value” for a type. Read more
source§

impl<T: Hash, P: Hash> Hash for PointWithData<T, P>

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl<T: Ord, P: Ord> Ord for PointWithData<T, P>

source§

fn cmp(&self, other: &PointWithData<T, P>) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · source§

fn max(self, other: Self) -> Selfwhere Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · source§

fn min(self, other: Self) -> Selfwhere Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · source§

fn clamp(self, min: Self, max: Self) -> Selfwhere Self: Sized + PartialOrd<Self>,

Restrict a value to a certain interval. Read more
source§

impl<T: PartialEq, P: PartialEq> PartialEq<PointWithData<T, P>> for PointWithData<T, P>

source§

fn eq(&self, other: &PointWithData<T, P>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<T: PartialOrd, P: PartialOrd> PartialOrd<PointWithData<T, P>> for PointWithData<T, P>

source§

fn partial_cmp(&self, other: &PointWithData<T, P>) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · source§

fn lt(&self, other: &Rhs) -> bool

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

fn le(&self, other: &Rhs) -> bool

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · source§

fn gt(&self, other: &Rhs) -> bool

This method tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

fn ge(&self, other: &Rhs) -> bool

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
source§

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

source§

fn distance_2(&self, point: &P) -> <P as Point>::Scalar

Returns the squared euclidean distance between an object to a point.
source§

fn contains_point(&self, point: &P) -> bool

Returns true if a point is contained within this object. Read more
source§

fn distance_2_if_less_or_equal( &self, point: &<Self::Envelope as Envelope>::Point, max_distance_2: <<Self::Envelope as Envelope>::Point as Point>::Scalar ) -> Option<<<Self::Envelope as Envelope>::Point as Point>::Scalar>

Returns the squared distance to this object, or None if the distance is larger than a given maximum value. Read more
source§

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

§

type Envelope = AABB<P>

The object’s envelope type. Usually, AABB will be the right choice. This type also defines the object’s dimensionality.
source§

fn envelope(&self) -> Self::Envelope

Returns the object’s envelope. Read more
source§

impl<T: Copy, P: Copy> Copy for PointWithData<T, P>

source§

impl<T: Eq, P: Eq> Eq for PointWithData<T, P>

source§

impl<T, P> StructuralEq for PointWithData<T, P>

source§

impl<T, P> StructuralPartialEq for PointWithData<T, P>

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§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.