Convert a base-64 encoded, serialised, Rust struct to a Python class

This page summarizes the projects mentioned and recommended in the original post on /r/rust

SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
  1. matched-data-cli

    Tool to interact with the firewall matched data feature.

    Cloudflare provides a Rust CLI tool to decrypt the data, which can be found here. In short it looks like this:

  2. SaaSHub

    SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives

    SaaSHub logo
  3. bincode

    A binary encoder / decoder implementation in Rust.

    One, figure out the bincode format (documented here: https://github.com/bincode-org/bincode/blob/trunk/docs/spec.md) and write your own parser. Maybe a one-off that specifically only handles this one data structure would be fairly straightforward.

  4. serde

    Serialization framework for Rust

    serde (https://serde.rs/) is a generic serialization framework to allow serialization of Rust structs into and from an arbitrary data format. It is not a fixed format, and its data model (https://serde.rs/data-model.html) is also not exclusive to Rust: A common case is to (de)serialize to/from json via the serde_json library.

NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts

  • Hey Rustaceans! Got a question? Ask here (26/2023)!

    5 projects | /r/rust | 26 Jun 2023
  • Fang, async background processing for Rust

    1 project | /r/rust | 6 Aug 2022
  • impl serde::Deserialize... is it really that complicated?

    2 projects | /r/rust | 28 Apr 2022
  • A nicer way to pack this message?

    2 projects | /r/rust | 1 Apr 2022
  • Easily converts a struct into Vec<u8> and back.

    4 projects | /r/rust | 1 Dec 2021