summaryrefslogtreecommitdiffstats
path: root/third_party/rust/uniffi-example-geometry/src/geometry.udl
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/rust/uniffi-example-geometry/src/geometry.udl')
-rw-r--r--third_party/rust/uniffi-example-geometry/src/geometry.udl15
1 files changed, 15 insertions, 0 deletions
diff --git a/third_party/rust/uniffi-example-geometry/src/geometry.udl b/third_party/rust/uniffi-example-geometry/src/geometry.udl
new file mode 100644
index 0000000000..af60d429bf
--- /dev/null
+++ b/third_party/rust/uniffi-example-geometry/src/geometry.udl
@@ -0,0 +1,15 @@
+
+namespace geometry {
+ double gradient(Line ln);
+ Point? intersection(Line ln1, Line ln2);
+};
+
+dictionary Point {
+ double coord_x;
+ double coord_y;
+};
+
+dictionary Line {
+ Point start;
+ Point end;
+};