Trait rstar::RTreeNum

source ·
pub trait RTreeNum: Bounded + Num + Clone + Copy + Signed + PartialOrd + Debug { }
Expand description

Defines a number type that is compatible with rstar.

rstar works out of the box with the following standard library types:

  • i32
  • i64
  • f32
  • f64

Any type implementing all of these traits will also be supported.

Implementors