1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
//! The eleven empty tag types that identify a geometry kind.
//!
//! Each tag is a zero-sized struct — its sole purpose is to serve as a
//! type-level identity used by `Geometry::Kind` and by trait-bound
//! dispatch. The C++ counterparts live in `boost/geometry/core/tags.hpp`.
//!
//! # Examples
//!
//! Every tag is a zero-sized identifier:
//!
//! ```
//! use geometry_tag::{
//! BoxTag, GeometryCollectionTag, LinestringTag, MultiLinestringTag,
//! MultiPointTag, MultiPolygonTag, PointTag, PolygonTag,
//! PolyhedralSurfaceTag, RingTag, SegmentTag,
//! };
//! let _ = (
//! PointTag, SegmentTag, LinestringTag, RingTag, PolygonTag, BoxTag,
//! MultiPointTag, MultiLinestringTag, MultiPolygonTag,
//! GeometryCollectionTag, PolyhedralSurfaceTag,
//! );
//! ```
/// OGC Point identifying tag — `boost/geometry/core/tags.hpp:91`.
;
/// Convenience segment (2-points) identifying tag — `boost/geometry/core/tags.hpp:106`.
;
/// OGC Linestring identifying tag — `boost/geometry/core/tags.hpp:94`.
;
/// Convenience linear ring identifying tag — `boost/geometry/core/tags.hpp:100`.
;
/// OGC Polygon identifying tag — `boost/geometry/core/tags.hpp:97`.
;
/// 2D or 3D axis-aligned box (mbr / aabb) identifying tag — `boost/geometry/core/tags.hpp:103`.
;
/// OGC `MultiPoint` identifying tag — `boost/geometry/core/tags.hpp:113`.
;
/// OGC `MultiLinestring` identifying tag — `boost/geometry/core/tags.hpp:116`.
;
/// OGC `MultiPolygon` identifying tag — `boost/geometry/core/tags.hpp:119`.
;
/// OGC Geometry Collection identifying tag — `boost/geometry/core/tags.hpp:122`.
;
/// OGC Polyhedral surface identifying tag — `boost/geometry/core/tags.hpp:109`.
;
/// Runtime-tagged (variant) geometry identifying tag —
/// `boost/geometry/core/tags.hpp:124` (`dynamic_geometry_tag`). Marks a
/// value whose OGC kind is decided at runtime, e.g. `DynGeometry`.
;