diff options
author | Quentin Dufour <quentin@deuxfleurs.fr> | 2023-11-01 16:45:29 +0100 |
---|---|---|
committer | Quentin Dufour <quentin@deuxfleurs.fr> | 2023-11-01 16:45:29 +0100 |
commit | 8ac3a8ce8ba268a3261e23694b8b62afa6a3ae37 (patch) | |
tree | 0ffa2cf006c592f184df693f216ebcaeb07c2876 /src/storage/garage.rs | |
parent | 3026b217774a51e01cca1ae584fba8c6398754cc (diff) | |
download | aerogramme-8ac3a8ce8ba268a3261e23694b8b62afa6a3ae37.tar.gz aerogramme-8ac3a8ce8ba268a3261e23694b8b62afa6a3ae37.zip |
implement an AnyCredentials
Diffstat (limited to 'src/storage/garage.rs')
-rw-r--r-- | src/storage/garage.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/storage/garage.rs b/src/storage/garage.rs index 91c4fa2..b883623 100644 --- a/src/storage/garage.rs +++ b/src/storage/garage.rs @@ -6,7 +6,8 @@ pub struct GrgRef {} pub struct GrgValue {} pub struct GrgTypes {} -impl RowRealization for GrgTypes { +impl Sto for GrgTypes { + type Builder=GrgCreds; type Store=GrgStore; type Ref=GrgRef; type Value=GrgValue; |