diff options
author | Aaron O'Mullan <aaron.omullan@gmail.com> | 2022-03-23 21:15:01 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-23 21:15:01 +0100 |
commit | f580134b1e4b75bc0e7579ea30cbf9f8c9ea3459 (patch) | |
tree | 993b60fa35a476fab4fdf43caf22906f3316c9a7 /serde_v8/src/magic/mod.rs | |
parent | b82ded84d341cda98821592556804a529638589c (diff) |
cleanup(serde_v8): streamline magic types (#14076)
Formalize magic types and how they're "transerialized", also makes U16String deserializable
Diffstat (limited to 'serde_v8/src/magic/mod.rs')
-rw-r--r-- | serde_v8/src/magic/mod.rs | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/serde_v8/src/magic/mod.rs b/serde_v8/src/magic/mod.rs index e90b5ab60..bc86c6a7c 100644 --- a/serde_v8/src/magic/mod.rs +++ b/serde_v8/src/magic/mod.rs @@ -1,11 +1,9 @@ // Copyright 2018-2022 the Deno authors. All rights reserved. MIT license. pub mod buffer; pub mod bytestring; -mod field; pub mod string_or_buffer; +pub mod transl8; pub mod u16string; mod value; pub mod zero_copy_buf; - -pub use field::FieldSerializer; -pub use value::{Value, FIELD, NAME}; +pub use value::Value; |