Database trait and JSON implementation #3
Labels
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: wojtek/musichoard#3
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
The current state of the hoard will need to be written to a database as it will contain information that is not stored with the music files (e.g. wishlists).
In this issue we add a trait and code to serialize to JSON.
The trait should be defined in
db/mod.rs
as backend-agnostic (i.e. JSON should be only one of many possible formats) and adb/json.rs
should be created for serialising to JSON specifically.Implement a JSON databaseto Database trait and JSON implementation