pub trait RebindGeometry<T: CoordinateScalar, Cs: CoordinateSystem> {
type Output;
}Expand description
Select the stock model matching Self while replacing coordinate
scalar and coordinate-system types.
Mirrors the specializations of helper_geometry for point, box,
linestring, and ring in geometries/helper_geometry.hpp:57-103.
Boost accepts any adapted geometry through tag dispatch; this Rust port is
deliberately defined for the stock model types, which are the only types
it can reconstruct without a user-provided output constructor.
Required Associated Types§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".