pub struct SpatialJoinResult {
pub matches: Vec<(usize, usize)>,
pub num_matches: usize,
}Expand description
Result of spatial join
Fields§
§matches: Vec<(usize, usize)>Pairs of matching indices (left_idx, right_idx)
num_matches: usizeNumber of matches
Trait Implementations§
Source§impl Clone for SpatialJoinResult
impl Clone for SpatialJoinResult
Source§fn clone(&self) -> SpatialJoinResult
fn clone(&self) -> SpatialJoinResult
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for SpatialJoinResult
impl RefUnwindSafe for SpatialJoinResult
impl Send for SpatialJoinResult
impl Sync for SpatialJoinResult
impl Unpin for SpatialJoinResult
impl UnsafeUnpin for SpatialJoinResult
impl UnwindSafe for SpatialJoinResult
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more