You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: linera-views/README.md
+4-4
Original file line number
Diff line number
Diff line change
@@ -21,10 +21,10 @@ We provide support for the following databases:
21
21
*`ScyllaDbStore` is a cloud-based Cassandra-compatible database.
22
22
*`ServiceStoreClient` is a gRPC-based storage that uses either memory or RocksDB. It is available in `linera-storage-service`.
23
23
24
-
The corresponding trait in the code is the [`crate::common::KeyValueStore`](https://docs.rs/linera-views/latest/linera_views/common/trait.KeyValueStore.html).
25
-
The trait decomposes into a [`common::ReadableKeyValueStore`](https://docs.rs/linera-views/latest/linera_views/common/trait.ReadableKeyValueStore.html)
26
-
and a [`common::WritableKeyValueStore`](https://docs.rs/linera-views/latest/linera_views/common/trait.WritableKeyValueStore.html).
27
-
In addition, there is a [`common::AdminKeyValueStore`](https://docs.rs/linera-views/latest/linera_views/common/trait.AdminKeyValueStore.html)
24
+
The corresponding trait in the code is the [`crate::store::KeyValueStore`](https://docs.rs/linera-views/latest/linera_views/store/trait.KeyValueStore.html).
25
+
The trait decomposes into a [`store::ReadableKeyValueStore`](https://docs.rs/linera-views/latest/linera_views/store/trait.ReadableKeyValueStore.html)
26
+
and a [`store::WritableKeyValueStore`](https://docs.rs/linera-views/latest/linera_views/store/trait.WritableKeyValueStore.html).
27
+
In addition, there is a [`store::AdminKeyValueStore`](https://docs.rs/linera-views/latest/linera_views/store/trait.AdminKeyValueStore.html)
28
28
which gives some functionalities for working with stores.
29
29
A context is the combination of a client and a base key (of type `Vec<u8>`).
Copy file name to clipboardExpand all lines: linera-views/src/lib.rs
+5-5
Original file line number
Diff line number
Diff line change
@@ -23,10 +23,10 @@ We provide support for the following databases:
23
23
* `ScyllaDbStore` is a cloud-based Cassandra-compatible database.
24
24
* `ServiceStoreClient` is a gRPC-based storage that uses either memory or RocksDB. It is available in `linera-storage-service`.
25
25
26
-
The corresponding trait in the code is the [`crate::common::KeyValueStore`](https://docs.rs/linera-views/latest/linera_views/common/trait.KeyValueStore.html).
27
-
The trait decomposes into a [`common::ReadableKeyValueStore`](https://docs.rs/linera-views/latest/linera_views/common/trait.ReadableKeyValueStore.html)
28
-
and a [`common::WritableKeyValueStore`](https://docs.rs/linera-views/latest/linera_views/common/trait.WritableKeyValueStore.html).
29
-
In addition, there is a [`common::AdminKeyValueStore`](https://docs.rs/linera-views/latest/linera_views/common/trait.AdminKeyValueStore.html)
26
+
The corresponding trait in the code is the [`crate::store::KeyValueStore`](https://docs.rs/linera-views/latest/linera_views/store/trait.KeyValueStore.html).
27
+
The trait decomposes into a [`store::ReadableKeyValueStore`](https://docs.rs/linera-views/latest/linera_views/store/trait.ReadableKeyValueStore.html)
28
+
and a [`store::WritableKeyValueStore`](https://docs.rs/linera-views/latest/linera_views/store/trait.WritableKeyValueStore.html).
29
+
In addition, there is a [`store::AdminKeyValueStore`](https://docs.rs/linera-views/latest/linera_views/store/trait.AdminKeyValueStore.html)
30
30
which gives some functionalities for working with stores.
31
31
A context is the combination of a client and a base key (of type `Vec<u8>`).
32
32
@@ -74,7 +74,7 @@ pub mod common;
74
74
/// Elementary data-structures implementing the [`views::View`] trait.
75
75
pubmod views;
76
76
77
-
/// Backend implementing the [`crate::common::KeyValueStore`] trait.
77
+
/// Backend implementing the [`crate::store::KeyValueStore`] trait.
0 commit comments