mirror of
https://github.com/servo/servo.git
synced 2025-06-13 19:04:30 +00:00
* script: Restrict reexport visibility of DOM types. Signed-off-by: Josh Matthews <josh@joshmatthews.net> * script: Mass pub->pub(crate) conversion. Signed-off-by: Josh Matthews <josh@joshmatthews.net> * script: Hide existing dead code warnings. Signed-off-by: Josh Matthews <josh@joshmatthews.net> * Formatting. Signed-off-by: Josh Matthews <josh@joshmatthews.net> * Fix clippy warnings. Signed-off-by: Josh Matthews <josh@joshmatthews.net> * Formatting. Signed-off-by: Josh Matthews <josh@joshmatthews.net> * Fix unit tests. Signed-off-by: Josh Matthews <josh@joshmatthews.net> * Fix clippy. Signed-off-by: Josh Matthews <josh@joshmatthews.net> * More formatting. Signed-off-by: Josh Matthews <josh@joshmatthews.net> --------- Signed-off-by: Josh Matthews <josh@joshmatthews.net>
22 lines
875 B
Rust
22 lines
875 B
Rust
/* 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 [transferable objects]
|
|
//! (<https://html.spec.whatwg.org/multipage/#transferable-objects>).
|
|
|
|
use js::jsapi::MutableHandleObject;
|
|
|
|
use crate::dom::bindings::reflector::DomObject;
|
|
use crate::dom::bindings::structuredclone::{StructuredDataReader, StructuredDataWriter};
|
|
use crate::dom::globalscope::GlobalScope;
|
|
|
|
pub(crate) trait Transferable: DomObject {
|
|
fn transfer(&self, sc_writer: &mut StructuredDataWriter) -> Result<u64, ()>;
|
|
fn transfer_receive(
|
|
owner: &GlobalScope,
|
|
sc_reader: &mut StructuredDataReader,
|
|
extra_data: u64,
|
|
return_object: MutableHandleObject,
|
|
) -> Result<(), ()>;
|
|
}
|