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

#866 in Encoding

Download history 205/week @ 2024-09-25 187/week @ 2024-10-02 30/week @ 2024-10-09 9/week @ 2024-10-16 2/week @ 2024-10-23 3/week @ 2024-10-30 67/week @ 2024-11-06 62/week @ 2024-11-13 22/week @ 2024-11-20 20/week @ 2024-11-27 53/week @ 2024-12-04 183/week @ 2024-12-11 9/week @ 2024-12-18 49/week @ 2025-01-01 205/week @ 2025-01-08

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

Apache-2.0

30KB
545 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
~144K SLoC