Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
duniter
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Monitor
Service Desk
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
nodes
typescript
duniter
Commits
ecf43d46
Commit
ecf43d46
authored
4 years ago
by
Éloïs
Browse files
Options
Downloads
Patches
Plain Diff
[fix] kv_typed: *DbTxRw must be exposed
parent
81b8827c
No related branches found
No related tags found
1 merge request
!1359
Ref/gva indexer/unified db tx
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
rust-libs/tools/kv_typed/src/db_schema.rs
+1
-1
1 addition, 1 deletion
rust-libs/tools/kv_typed/src/db_schema.rs
with
1 addition
and
1 deletion
rust-libs/tools/kv_typed/src/db_schema.rs
+
1
−
1
View file @
ecf43d46
...
@@ -35,7 +35,7 @@ macro_rules! db_schema {
...
@@ -35,7 +35,7 @@ macro_rules! db_schema {
}
}
)
*
)
*
// Inner module used to hide internals types that must not be exposed on public api
// Inner module used to hide internals types that must not be exposed on public api
pub
use
__inner
::{[
<
$db_name
Db
>
],
[
<
$db_name
DbRo
>
],
[
<
$db_name
DbWritable
>
],
[
<
$db_name
DbReadable
>
]};
pub
use
__inner
::{[
<
$db_name
Db
>
],
[
<
$db_name
DbRo
>
],
[
<
$db_name
DbWritable
>
],
[
<
$db_name
DbReadable
>
]
,
[
<
$db_name
DbTxRw
>
]
};
mod
__inner
{
mod
__inner
{
use
super
::
*
;
use
super
::
*
;
use
kv_typed
::
prelude
::
*
;
use
kv_typed
::
prelude
::
*
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment