rstar/primitives/
object_ref.rsuse crate::envelope::Envelope;
use crate::object::PointDistance;
use crate::{object::RTreeObject, point::Point};
use core::ops::Deref;
#[derive(Clone, Copy, Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
pub struct ObjectRef<'a, T: RTreeObject> {
inner: &'a T,
}
impl<'a, T: RTreeObject> RTreeObject for ObjectRef<'a, T> {
type Envelope = T::Envelope;
fn envelope(&self) -> Self::Envelope {
self.inner.envelope()
}
}
impl<'a, T: PointDistance> PointDistance for ObjectRef<'a, T> {
fn distance_2(
&self,
point: &<Self::Envelope as Envelope>::Point,
) -> <<Self::Envelope as Envelope>::Point as Point>::Scalar {
self.inner.distance_2(point)
}
fn contains_point(&self, p: &<Self::Envelope as Envelope>::Point) -> bool {
self.inner.contains_point(p)
}
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> {
self.inner
.distance_2_if_less_or_equal(point, max_distance_2)
}
}
impl<'a, T: RTreeObject> ObjectRef<'a, T> {
pub fn new(inner: &'a T) -> Self {
Self { inner }
}
}
impl<'a, T: RTreeObject> Deref for ObjectRef<'a, T> {
type Target = T;
fn deref(&self) -> &Self::Target {
self.inner
}
}