aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/bindings/serializable.rs
diff options
context:
space:
mode:
authorGregory Terzian <gterzian@users.noreply.github.com>2019-09-01 03:18:42 +0800
committerGregory Terzian <gterzian@users.noreply.github.com>2019-12-11 22:46:50 +0800
commit6e8a85482c2068d4dbccb992954271f725570f91 (patch)
treeb30f6d82a018df0b196fa4d47d3b6667d708313e /components/script/dom/bindings/serializable.rs
parent7aa68c8fe7ca0865a7323ab1e5b9526efa588ca2 (diff)
downloadservo-6e8a85482c2068d4dbccb992954271f725570f91.tar.gz
servo-6e8a85482c2068d4dbccb992954271f725570f91.zip
re-structure blob, structured serialization
Diffstat (limited to 'components/script/dom/bindings/serializable.rs')
-rw-r--r--components/script/dom/bindings/serializable.rs32
1 files changed, 32 insertions, 0 deletions
diff --git a/components/script/dom/bindings/serializable.rs b/components/script/dom/bindings/serializable.rs
new file mode 100644
index 00000000000..004b9ef4d73
--- /dev/null
+++ b/components/script/dom/bindings/serializable.rs
@@ -0,0 +1,32 @@
+/* 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/. */
+
+//! Trait representing the concept of [serializable objects]
+//! (https://html.spec.whatwg.org/multipage/#serializable-objects).
+
+use crate::dom::bindings::reflector::DomObject;
+use crate::dom::bindings::root::DomRoot;
+use crate::dom::bindings::structuredclone::StructuredDataHolder;
+use crate::dom::globalscope::GlobalScope;
+
+/// The key corresponding to the storage location
+/// of a serialized platform object stored in a StructuredDataHolder.
+#[derive(Clone, Copy, Debug, Eq, Hash, PartialEq)]
+pub struct StorageKey {
+ pub index: u32,
+ pub name_space: u32,
+}
+
+/// Interface for serializable platform objects.
+/// <https://html.spec.whatwg.org/multipage/#serializable>
+pub trait Serializable: DomObject {
+ /// <https://html.spec.whatwg.org/multipage/#serialization-steps>
+ fn serialize(&self, sc_holder: &mut StructuredDataHolder) -> Result<StorageKey, ()>;
+ /// <https://html.spec.whatwg.org/multipage/#deserialization-steps>
+ fn deserialize(
+ owner: &DomRoot<GlobalScope>,
+ sc_holder: &mut StructuredDataHolder,
+ extra_data: StorageKey,
+ ) -> Result<(), ()>;
+}