1
Fork 0

rustc_serialize: merge collection_impls.rs into serialize.rs.

`serialize.rs` has the `Encodable`/`Decodable` impls for lots of basic
types, including `Vec`. `collection_impls` has it for lots of collection
types. The distinction isn't really meaningful, and it's simpler to have
them all in a single file.
This commit is contained in:
Nicholas Nethercote 2023-10-06 09:50:23 +11:00
parent f703475b4e
commit 5f69ca62f2
3 changed files with 258 additions and 264 deletions

View file

@ -21,7 +21,6 @@
pub use self::serialize::{Decodable, Decoder, Encodable, Encoder};
mod collection_impls;
mod serialize;
pub mod leb128;