diff options
author | Wedson Almeida Filho <[email protected]> | 2022-12-28 06:03:45 +0000 |
---|---|---|
committer | Miguel Ojeda <[email protected]> | 2023-01-16 23:48:06 +0100 |
commit | 70e42ebbf6416e8005d8e08ae521b7d5cc5a8b3a (patch) | |
tree | 7b53101eef75b58f2cd4142ea18b2c775c654dbc /tools/perf/scripts/python/export-to-postgresql.py | |
parent | 92a655ae00a2f15fdd80eb96cd23526c0d8f0bfd (diff) |
rust: sync: introduce `UniqueArc`
Since `Arc<T>` does not allow mutating `T` directly (i.e., without inner
mutability), it is currently not possible to do some initialisation of
`T` post construction but before being shared.
`UniqueArc<T>` addresses this problem essentially being an `Arc<T>` that
has a refcount of 1 and is therefore writable. Once initialisation is
completed, it can be transitioned (without failure paths) into an
`Arc<T>`.
Suggested-by: Gary Guo <[email protected]>
Signed-off-by: Wedson Almeida Filho <[email protected]>
Reviewed-by: Alice Ryhl <[email protected]>
Reviewed-by: Gary Guo <[email protected]>
Reviewed-by: Vincenzo Palazzo <[email protected]>
Acked-by: Boqun Feng <[email protected]>
Signed-off-by: Miguel Ojeda <[email protected]>
Diffstat (limited to 'tools/perf/scripts/python/export-to-postgresql.py')
0 files changed, 0 insertions, 0 deletions