File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ pub enum KvError {
5454/// Kv helper struct for a db.
5555/// Opening or creating a kv will give you a Result<Kv>.
5656/// You can call it's impl functions to interact with it.
57- #[ derive( Debug , Serialize , Deserialize ) ]
57+ #[ derive( Debug , Clone , Serialize , Deserialize ) ]
5858pub struct Kv < K , V > {
5959 pub package_id : PackageId ,
6060 pub db : String ,
Original file line number Diff line number Diff line change @@ -76,6 +76,7 @@ pub enum SqliteError {
7676/// Sqlite helper struct for a db.
7777/// Opening or creating a db will give you a Result<sqlite>.
7878/// You can call it's impl functions to interact with it.
79+ #[ derive( Debug , Clone , Serialize , Deserialize ) ]
7980pub struct Sqlite {
8081 pub package_id : PackageId ,
8182 pub db : String ,
You can’t perform that action at this time.
0 commit comments