diff options
author | Aapo Alasuutari <aapo.alasuutari@gmail.com> | 2023-02-22 19:32:38 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-22 19:32:38 +0200 |
commit | b56b8c8a753442036ace3bb0f4403c952f18d408 (patch) | |
tree | 675c47da4847a754cf2cc3cb664dc8047944246d /serde_v8/magic/mod.rs | |
parent | 2bd7482295daae4edfd367d84505bb43735cd410 (diff) |
feat(ext/ffi): Replace pointer integers with v8::External objects (#16889)
Diffstat (limited to 'serde_v8/magic/mod.rs')
-rw-r--r-- | serde_v8/magic/mod.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/serde_v8/magic/mod.rs b/serde_v8/magic/mod.rs index fe4577672..f96e422b1 100644 --- a/serde_v8/magic/mod.rs +++ b/serde_v8/magic/mod.rs @@ -2,6 +2,7 @@ pub mod buffer; pub mod bytestring; pub mod detached_buffer; +mod external_pointer; mod global; pub(super) mod rawbytes; pub mod string_or_buffer; @@ -9,5 +10,6 @@ pub mod transl8; pub mod u16string; pub mod v8slice; mod value; +pub use external_pointer::ExternalPointer; pub use global::Global; pub use value::Value; |