summaryrefslogtreecommitdiffstats
path: root/toolkit/components/uniffi-example-custom-types/src/lib.rs
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 00:47:55 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 00:47:55 +0000
commit26a029d407be480d791972afb5975cf62c9360a6 (patch)
treef435a8308119effd964b339f76abb83a57c29483 /toolkit/components/uniffi-example-custom-types/src/lib.rs
parentInitial commit. (diff)
downloadfirefox-26a029d407be480d791972afb5975cf62c9360a6.tar.xz
firefox-26a029d407be480d791972afb5975cf62c9360a6.zip
Adding upstream version 124.0.1.upstream/124.0.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'toolkit/components/uniffi-example-custom-types/src/lib.rs')
-rw-r--r--toolkit/components/uniffi-example-custom-types/src/lib.rs52
1 files changed, 52 insertions, 0 deletions
diff --git a/toolkit/components/uniffi-example-custom-types/src/lib.rs b/toolkit/components/uniffi-example-custom-types/src/lib.rs
new file mode 100644
index 0000000000..61aea7a11a
--- /dev/null
+++ b/toolkit/components/uniffi-example-custom-types/src/lib.rs
@@ -0,0 +1,52 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
+
+use url::Url;
+
+// Custom Handle type which trivially wraps an i64.
+pub struct Handle(pub i64);
+
+// We must implement the UniffiCustomTypeConverter trait for each custom type on the scaffolding side
+impl UniffiCustomTypeConverter for Handle {
+ // The `Builtin` type will be used to marshall values across the FFI
+ type Builtin = i64;
+
+ // Convert Builtin to our custom type
+ fn into_custom(val: Self::Builtin) -> uniffi::Result<Self> {
+ Ok(Handle(val))
+ }
+
+ // Convert our custom type to Builtin
+ fn from_custom(obj: Self) -> Self::Builtin {
+ obj.0
+ }
+}
+
+// Use `url::Url` as a custom type, with `String` as the Builtin
+impl UniffiCustomTypeConverter for Url {
+ type Builtin = String;
+
+ fn into_custom(val: Self::Builtin) -> uniffi::Result<Self> {
+ Ok(Url::parse(&val)?)
+ }
+
+ fn from_custom(obj: Self) -> Self::Builtin {
+ obj.to_string()
+ }
+}
+
+// And a little struct and function that ties them together.
+pub struct CustomTypesDemo {
+ url: Url,
+ handle: Handle,
+}
+
+pub fn get_custom_types_demo(v: Option<CustomTypesDemo>) -> CustomTypesDemo {
+ v.unwrap_or_else(|| CustomTypesDemo {
+ url: Url::parse("http://example.com/").unwrap(),
+ handle: Handle(123),
+ })
+}
+
+include!(concat!(env!("OUT_DIR"), "/custom-types.uniffi.rs"));