[][src]Struct spatial_join::ParSpatialIndex

pub struct ParSpatialIndex(_);

Implementations

impl ParSpatialIndex[src]

pub fn new<T, U>(small: T, config: Config) -> Result<Self, Error> where
    T: TryInto<Par<SplitGeoSeq>, Error = U>,
    U: Any
[src]

pub fn proximity_map<'a, T: 'a, U>(
    &'a self,
    big: T
) -> Result<impl ParallelIterator<Item = ProxMapRow> + 'a, Error> where
    T: TryInto<Par<SplitGeoSeq>, Error = U>,
    U: Any + Debug
[src]

pub fn proximity_map_with_geos<'a, T: 'a, U>(
    &'a self,
    big: T
) -> Result<impl ParallelIterator<Item = ProxMapGeoRow> + 'a, Error> where
    T: TryInto<Par<SplitGeoSeq>, Error = U>,
    U: Any + Debug
[src]

pub fn spatial_join<'a, T, U>(
    &'a self,
    big: T,
    interaction: Interaction
) -> Result<impl ParallelIterator<Item = SJoinRow> + 'a, Error> where
    T: TryInto<Par<SplitGeoSeq>, Error = U>,
    U: Any + Debug
[src]

pub fn spatial_join_with_geos<'a, T, U>(
    &'a self,
    big: T,
    interaction: Interaction
) -> Result<impl ParallelIterator<Item = SJoinGeoRow> + 'a, Error> where
    T: TryInto<Par<SplitGeoSeq>, Error = U>,
    U: Any + Debug
[src]

Auto Trait Implementations

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, 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.