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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
#![allow(non_camel_case_types)]
use super::functions;
pub type ST_Dimension<G, Expr1> = functions::ST_Dimension::HelperType<G, Expr1>;
pub type ST_Envelope<G, Expr1> = functions::ST_Envelope::HelperType<G, Expr1>;
pub type ST_GeometryType<G, Expr1> = functions::ST_GeometryType::HelperType<G, Expr1>;
pub type ST_IsEmpty<G, Expr1> = functions::ST_IsEmpty::HelperType<G, Expr1>;
pub type ST_IsSimple<G, Expr1> = functions::ST_IsSimple::HelperType<G, Expr1>;
pub type ST_SRID<G, Expr1> = functions::ST_SRID::HelperType<G, Expr1>;
pub type ST_SRID_2<G, Expr1, Expr2> = functions::ST_SRID_2::HelperType<G, Expr1, Expr2>;
pub type ST_Transform<G, Expr1, Expr2> = functions::ST_Transform::HelperType<G, Expr1, Expr2>;
pub type ST_Latitude<Expr> = functions::ST_Latitude::HelperType<Expr>;
pub type ST_Longitude<Expr> = functions::ST_Longitude::HelperType<Expr>;
pub type ST_Latitude_2<Expr1, Expr2> = functions::ST_Latitude_2::HelperType<Expr1, Expr2>;
pub type ST_Longitude_2<Expr1, Expr2> = functions::ST_Longitude_2::HelperType<Expr1, Expr2>;
pub type ST_X<Expr> = functions::ST_X::HelperType<Expr>;
pub type ST_Y<Expr> = functions::ST_Y::HelperType<Expr>;
pub type ST_X_2<Expr1, Expr2> = functions::ST_X_2::HelperType<Expr1, Expr2>;
pub type ST_Y_2<Expr1, Expr2> = functions::ST_Y_2::HelperType<Expr1, Expr2>;
pub type ST_EndPoint<Expr> = functions::ST_EndPoint::HelperType<Expr>;
pub type ST_IsClosed<G, Expr1> = functions::ST_IsClosed::HelperType<G, Expr1>;
pub type ST_Length<G, Expr1> = functions::ST_Length::HelperType<G, Expr1>;
pub type ST_NumPoints<Expr> = functions::ST_NumPoints::HelperType<Expr>;
pub type ST_PointN<Expr1, Expr2> = functions::ST_PointN::HelperType<Expr1, Expr2>;
pub type ST_StartPoint<Expr> = functions::ST_StartPoint::HelperType<Expr>;
pub type ST_Area<G, Expr1> = functions::ST_Area::HelperType<G, Expr1>;
pub type ST_Centroid<G, Expr1> = functions::ST_Centroid::HelperType<G, Expr1>;
pub type ST_ExteriorRing<Expr> = functions::ST_ExteriorRing::HelperType<Expr>;
pub type ST_InteriorRingN<Expr1, Expr2> = functions::ST_InteriorRingN::HelperType<Expr1, Expr2>;
pub type ST_NumInteriorRings<Expr> = functions::ST_NumInteriorRings::HelperType<Expr>;
pub type ST_GeometryN<Expr1, Expr2> = functions::ST_GeometryN::HelperType<Expr1, Expr2>;
pub type ST_NumGeometries<Expr> = functions::ST_NumGeometries::HelperType<Expr>;
pub type ST_Buffer_Strategy<Expr> = functions::ST_Buffer_Strategy::HelperType<Expr>;
pub type ST_Buffer_Strategy_2<Expr1, Expr2> =
functions::ST_Buffer_Strategy_2::HelperType<Expr1, Expr2>;
pub type ST_Buffer<G, Expr1, Expr2> = functions::ST_Buffer::HelperType<G, Expr1, Expr2>;
pub type ST_Buffer_1<G, Expr1, Expr2, Expr3> =
functions::ST_Buffer_1::HelperType<G, Expr1, Expr2, Expr3>;
pub type ST_Buffer_2<G, Expr1, Expr2, Expr3, Expr4> =
functions::ST_Buffer_2::HelperType<G, Expr1, Expr2, Expr3, Expr4>;
pub type ST_Buffer_3<G, Expr1, Expr2, Expr3, Expr4, Expr5> =
functions::ST_Buffer_3::HelperType<G, Expr1, Expr2, Expr3, Expr4, Expr5>;
pub type ST_ConvexHull<G, Expr1> = functions::ST_ConvexHull::HelperType<G, Expr1>;
pub type ST_Difference<G1, G2, Expr1, Expr2> =
functions::ST_Difference::HelperType<G1, G2, Expr1, Expr2>;
pub type ST_Intersection<G1, G2, Expr1, Expr2> =
functions::ST_Intersection::HelperType<G1, G2, Expr1, Expr2>;
pub type ST_SymDifference<G1, G2, Expr1, Expr2> =
functions::ST_SymDifference::HelperType<G1, G2, Expr1, Expr2>;
pub type ST_Union<G1, G2, Expr1, Expr2> = functions::ST_Union::HelperType<G1, G2, Expr1, Expr2>;
pub type ST_LineInterpolatePoint<Expr1, Expr2> =
functions::ST_LineInterpolatePoint::HelperType<Expr1, Expr2>;
pub type ST_LineInterpolatePoints<Expr1, Expr2> =
functions::ST_LineInterpolatePoints::HelperType<Expr1, Expr2>;
pub type ST_PointAtDistance<Expr1, Expr2> = functions::ST_PointAtDistance::HelperType<Expr1, Expr2>;
pub type ST_Contains<G1, G2, Expr1, Expr2> =
functions::ST_Contains::HelperType<G1, G2, Expr1, Expr2>;
pub type ST_Crosses<G1, G2, Expr1, Expr2> = functions::ST_Crosses::HelperType<G1, G2, Expr1, Expr2>;
pub type ST_Disjoint<G1, G2, Expr1, Expr2> =
functions::ST_Disjoint::HelperType<G1, G2, Expr1, Expr2>;
pub type ST_Distance<G1, G2, Expr1, Expr2> =
functions::ST_Distance::HelperType<G1, G2, Expr1, Expr2>;
pub type ST_Equals<G1, G2, Expr1, Expr2> = functions::ST_Equals::HelperType<G1, G2, Expr1, Expr2>;
pub type ST_Intersects<G1, G2, Expr1, Expr2> =
functions::ST_Intersects::HelperType<G1, G2, Expr1, Expr2>;
pub type ST_Overlaps<G1, G2, Expr1, Expr2> =
functions::ST_Overlaps::HelperType<G1, G2, Expr1, Expr2>;
pub type ST_Touches<G1, G2, Expr1, Expr2> = functions::ST_Touches::HelperType<G1, G2, Expr1, Expr2>;
pub type ST_Within<G1, G2, Expr1, Expr2> = functions::ST_Within::HelperType<G1, G2, Expr1, Expr2>;
pub type MBRContains<G1, G2, Expr1, Expr2> =
functions::MBRContains::HelperType<G1, G2, Expr1, Expr2>;
pub type MBRCoveredBy<G1, G2, Expr1, Expr2> =
functions::MBRCoveredBy::HelperType<G1, G2, Expr1, Expr2>;
pub type MBRCovers<G1, G2, Expr1, Expr2> = functions::MBRCovers::HelperType<G1, G2, Expr1, Expr2>;
pub type MBRDisjoint<G1, G2, Expr1, Expr2> =
functions::MBRDisjoint::HelperType<G1, G2, Expr1, Expr2>;
pub type MBREquals<G1, G2, Expr1, Expr2> = functions::MBREquals::HelperType<G1, G2, Expr1, Expr2>;
pub type MBROverlaps<G1, G2, Expr1, Expr2> =
functions::MBROverlaps::HelperType<G1, G2, Expr1, Expr2>;
pub type MBRTouches<G1, G2, Expr1, Expr2> = functions::MBRTouches::HelperType<G1, G2, Expr1, Expr2>;
pub type MBRWithin<G1, G2, Expr1, Expr2> = functions::MBRWithin::HelperType<G1, G2, Expr1, Expr2>;
pub type ST_Collect<G, Expr1> = functions::ST_Collect::HelperType<G, Expr1>;
pub type ST_IsValid<G, Expr1> = functions::ST_IsValid::HelperType<G, Expr1>;
pub type ST_Validate<G, Expr> = functions::ST_Validate::HelperType<G, Expr>;