diff options
author | Josh Matthews <josh@joshmatthews.net> | 2024-11-24 02:35:14 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-24 07:35:14 +0000 |
commit | e956f3124c230549c6ef4a63e2c27e56d0965453 (patch) | |
tree | 816ba96fcb8470265f72629fe3e1b182e92972a6 /components/script/dom/bindings/import.rs | |
parent | 468f9cf014c9dc41e43974ab17fb790e42d7e6ee (diff) | |
download | servo-e956f3124c230549c6ef4a63e2c27e56d0965453.tar.gz servo-e956f3124c230549c6ef4a63e2c27e56d0965453.zip |
Generate a trait abstracting over all known DOM interfaces (#34357)
* script: Generate trait for all DOM interfaces and parameterize generated Methods traits over it.
Signed-off-by: Josh Matthews <josh@joshmatthews.net>
* script: Update trait implementations with new generic type.
Signed-off-by: Josh Matthews <josh@joshmatthews.net>
* Formatting.
Signed-off-by: Josh Matthews <josh@joshmatthews.net>
---------
Signed-off-by: Josh Matthews <josh@joshmatthews.net>
Diffstat (limited to 'components/script/dom/bindings/import.rs')
-rw-r--r-- | components/script/dom/bindings/import.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/components/script/dom/bindings/import.rs b/components/script/dom/bindings/import.rs index 1f6f0cec972..c4c7a460ca9 100644 --- a/components/script/dom/bindings/import.rs +++ b/components/script/dom/bindings/import.rs @@ -25,6 +25,7 @@ pub mod base { ChannelCountMode, ChannelCountModeValues, ChannelInterpretation, ChannelInterpretationValues, }; + pub use crate::dom::bindings::codegen::DomTypes::DomTypes; pub use crate::dom::bindings::codegen::UnionTypes; pub use crate::dom::bindings::conversions::{ root_from_handlevalue, ConversionBehavior, ConversionResult, FromJSValConvertible, |