43 breaking releases

0.49.0 Nov 12, 2024
0.47.0 Jul 23, 2024
0.42.0 Mar 18, 2024
0.35.2 Dec 21, 2023
0.7.2 Oct 28, 2022

#912 in Encoding

Download history 38/week @ 2024-07-29 9/week @ 2024-08-12 26/week @ 2024-08-26 13/week @ 2024-09-02 48/week @ 2024-09-09 50/week @ 2024-09-16 65/week @ 2024-09-23 340/week @ 2024-09-30 27/week @ 2024-10-07 18/week @ 2024-10-14 2/week @ 2024-10-21 4/week @ 2024-10-28 123/week @ 2024-11-11

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

Apache-2.0

29KB
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–12MB
~155K SLoC