45 breaking releases

0.51.0 Jan 10, 2025
0.49.0 Nov 12, 2024
0.47.0 Jul 23, 2024
0.42.0 Mar 18, 2024
0.7.2 Oct 28, 2022

#874 in Encoding

Download history 4/week @ 2024-10-26 114/week @ 2024-11-09 23/week @ 2024-11-16 22/week @ 2024-11-23 33/week @ 2024-11-30 190/week @ 2024-12-07 34/week @ 2024-12-14 183/week @ 2025-01-04 87/week @ 2025-01-11 42/week @ 2025-01-18 21/week @ 2025-01-25 60/week @ 2025-02-01 185/week @ 2025-02-08

313 downloads per month
Used in 2 crates (via chamber-core)

Apache-2.0

18KB
269 lines

Shuttle Persist

This plugin allows persisting struct that implement serde::Serialize and loading them again using serde::Deserialize.

Usage

Add shuttle-persist to the dependencies for your service. You can get this resource using the shuttle-persist::Persist attribute to get a PersistInstance. Objects can now be managed with the following six methods:

  • clear(): removes the keys within the PersistInstance
  • list(): returns a vector of strings containing all the keys associated with a PersistInstance
  • load(): loads the contents of the PersistInstance
  • new(): constructs a new PersistInstance along with its associated storage folder
  • save(): saves a key-value pair into the PersistInstance
  • remove(): deletes a key from the PersistInstance

An example using the Rocket framework can be found on GitHub

Dependencies

~6–13MB
~143K SLoC