#decode #encode #encode-decode #serialization #deserialize

macro bincode_derive

Implementation of #[derive(Encode, Decode)] for bincode

12 releases (2 stable)

2.0.1 Mar 10, 2025
2.0.0-rc.3 Mar 30, 2023
2.0.0-rc.2 Oct 4, 2022
2.0.0-rc.1 Mar 4, 2022
2.0.0-alpha.1 Nov 9, 2021

#2658 in Encoding

Download history 155338/week @ 2024-12-15 36057/week @ 2024-12-22 78873/week @ 2024-12-29 168325/week @ 2025-01-05 190126/week @ 2025-01-12 142970/week @ 2025-01-19 169715/week @ 2025-01-26 174891/week @ 2025-02-02 179821/week @ 2025-02-09 176958/week @ 2025-02-16 222303/week @ 2025-02-23 218863/week @ 2025-03-02 230551/week @ 2025-03-09 223530/week @ 2025-03-16 248017/week @ 2025-03-23 242935/week @ 2025-03-30

949,327 downloads per month
Used in 55 crates (8 directly)

MIT license

45KB
780 lines

Bincode-derive

The derive crate for bincode. Implements bincode::Encode and bincode::Decode.

This crate is roughly split into 2 parts:

Parsing

Most of parsing is done in the src/parse/ folder. This will generate the following types:

  • Attributes, not being used currently
  • Visibility, not being used currently
  • DataType either Struct or Enum, with the name of the data type being parsed
  • Generics the generics part of the type, e.g. struct Foo<'a>
  • GenericConstraints the "where" part of the type

Generate

Generating the code implementation is done in either src/derive_enum.rs and src/derive_struct.rs.

This is supported by the structs in src/generate. The most notable points of this module are:

  • StreamBuilder is a thin but friendly wrapper around TokenStream
  • Generator is the base type of the code generator. This has helper methods to generate implementations:
    • ImplFor is a helper struct for a single impl A for B construction. In this functions can be defined:
      • GenerateFnBody is a helper struct for a single function in the above impl. This is created with a callback to FnBuilder which helps set some properties. GenerateFnBody has a stream() function which returns StreamBuilder for the function.

For additional derive testing, see the test cases in ../tests

For testing purposes, all generated code is outputted to the current target/generated/bincode folder, under file name <struct/enum name>_Encode.rs and <struct/enum name>_Decode.rs. This can help with debugging.

Dependencies

~190KB