pub struct SpatialJoinOptions {
pub predicate: SpatialJoinPredicate,
pub distance: f64,
pub use_index: bool,
}Expand description
Options for spatial join
Fields§
§predicate: SpatialJoinPredicateSpatial predicate
distance: f64Distance threshold (for WithinDistance predicate)
use_index: boolWhether to build spatial index
Trait Implementations§
Source§impl Clone for SpatialJoinOptions
impl Clone for SpatialJoinOptions
Source§fn clone(&self) -> SpatialJoinOptions
fn clone(&self) -> SpatialJoinOptions
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 moreSource§impl Debug for SpatialJoinOptions
impl Debug for SpatialJoinOptions
Auto Trait Implementations§
impl Freeze for SpatialJoinOptions
impl RefUnwindSafe for SpatialJoinOptions
impl Send for SpatialJoinOptions
impl Sync for SpatialJoinOptions
impl Unpin for SpatialJoinOptions
impl UnsafeUnpin for SpatialJoinOptions
impl UnwindSafe for SpatialJoinOptions
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